C++程序  |  9行  |  131 B

#include <ctype.h>

char *skipspace(const char *p)
{
   while (isspace((unsigned char)*p))
            p++;
   return (char *)p;
}