Merge "improve readability of string: fix indentation and remove trailing spaces"

This commit is contained in:
David Turner 2010-03-16 17:25:04 -07:00 committed by Android Code Review
commit dd8f3c80f1
13 changed files with 17 additions and 18 deletions

View File

@ -98,8 +98,8 @@ strncasecmp(const char *s1, const char *s2, size_t n)
if (cm[*us1] != cm[*us2++])
return (cm[*us1] - cm[*--us2]);
if (*us1++ == '\0')
break;
break;
} while (--n != 0);
}
}
return (0);
}

View File

@ -38,6 +38,6 @@ strchr(const char *p, int ch)
return((char *)p);
if (!*p)
return((char *)NULL);
}
}
/* NOTREACHED */
}

View File

@ -36,5 +36,5 @@
int
strcoll(const char *s1, const char *s2)
{
return strcmp (s1, s2);
return strcmp(s1, s2);
}

View File

@ -46,9 +46,9 @@ strlcat(char *dst, const char *src, size_t siz)
if (n != 1) {
*d++ = *s;
n--;
}
}
s++;
}
}
*d = '\0';
return(dlen + (s - src)); /* count does not include NUL */

View File

@ -37,7 +37,7 @@ strlcpy(char *dst, const char *src, size_t siz)
if ((*d++ = *s++) == '\0')
break;
}
}
}
/* Not enough room in dst, add NUL and traverse rest of src */
if (n == 0) {

View File

@ -52,6 +52,6 @@ strncat(char *dst, const char *src, size_t n)
d++;
} while (--n != 0);
*d = 0;
}
}
return (dst);
}

View File

@ -38,14 +38,13 @@
int
strncmp(const char *s1, const char *s2, size_t n)
{
if (n == 0)
return (0);
do {
if (*s1 != *s2++)
return (*(unsigned char *)s1 - *(unsigned char *)--s2);
if (*s1++ == 0)
break;
break;
} while (--n != 0);
return (0);
}

View File

@ -54,8 +54,8 @@ strncpy(char *dst, const char *src, size_t n)
/* NUL pad the remaining n-1 bytes */
while (--n != 0)
*d++ = 0;
break;
}
break;
}
} while (--n != 0);
}
return (dst);

View File

@ -40,6 +40,6 @@ strrchr(const char *p, int ch)
save = (char *)p;
if (!*p)
return(save);
}
}
/* NOTREACHED */
}

View File

@ -51,6 +51,6 @@ strstr(const char *s, const char *find)
} while (sc != c);
} while (strncmp(s, find, len) != 0);
s--;
}
}
return ((char *)s);
}