#line 5 "skip-sp.c-nw" #include EXPORT char *skip_spaces(char *s) { while (isspace(*s)) s++; return s; }