summaryrefslogtreecommitdiff
path: root/com32/lib/skipspace.c
blob: 5db265191625154230708e50f9df160e6630f2b1 (plain)
1
2
3
4
5
6
7
8
#include <ctype.h>

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