code-style: whitespace fixes
This commit is contained in:
@@ -28,7 +28,11 @@
|
||||
char *
|
||||
strcasestr(const char *h, const char *n)
|
||||
{
|
||||
size_t l = strlen(n);
|
||||
for (; *h; h++) if (!strncasecmp(h, n, l)) return (char *)h;
|
||||
return 0;
|
||||
size_t l = strlen(n);
|
||||
|
||||
for (; *h; h++)
|
||||
if (!strncasecmp(h, n, l))
|
||||
return (char *)h;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user