...
| Code Block | ||
|---|---|---|
| ||
size_t count_whitespace(const unsigned char *s) {
const unsigned char *t = s;
while (isspace(*t))
++t;
return t - s;
}
|
...
...
| Code Block | ||
|---|---|---|
| ||
size_t count_whitespace(const unsigned char *s) {
const unsigned char *t = s;
while (isspace(*t))
++t;
return t - s;
}
|
...