documentation bits in comments, no code changes

This commit is contained in:
Denis Vlasenko
2007-09-25 18:35:28 +00:00
parent ea7645bab6
commit 6a5377ac14
4 changed files with 12 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
char *skip_whitespace(const char *s)
{
/* NB: isspace('0') returns 0 */
/* NB: isspace('\0') returns 0 */
while (isspace(*s)) ++s;
return (char *) s;