code-style: whitespace fixes

This commit is contained in:
Hiltjo Posthuma
2015-09-06 22:33:41 +02:00
committed by sin
parent 51009a9600
commit 53be158979
5 changed files with 22 additions and 15 deletions

View File

@@ -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;
}