Home | History | Annotate | Download | only in lib
      1 #include <ctype.h>
      2 
      3 char *skipspace(const char *p)
      4 {
      5    while (isspace((unsigned char)*p))
      6             p++;
      7    return (char *)p;
      8 }
      9