9 lines
131 B
C
9 lines
131 B
C
#include <ctype.h>
|
|
|
|
char *skipspace(const char *p)
|
|
{
|
|
while (isspace((unsigned char)*p))
|
|
p++;
|
|
return (char *)p;
|
|
}
|