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

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

View File

@ -38,7 +38,6 @@
int int
strncmp(const char *s1, const char *s2, size_t n) strncmp(const char *s1, const char *s2, size_t n)
{ {
if (n == 0) if (n == 0)
return (0); return (0);
do { do {