对于strip()或trim()函数,没有标准的C实现。就是说,这是Linux内核中包含的一个:
char *strstrip(char *s){ size_t size; char *end; size = strlen(s); if (!size) return s; end = s + size - 1; while (end >= s && isspace(*end)) end--; *(end + 1) = ' '; while (*s && isspace(*s)) s++; return s;}


