aboutsummaryrefslogtreecommitdiff
path: root/COSMIC/stpblk.c
blob: 31d9ba1c94a582b81643510dc8769d93b5a8eff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <ctype.h>
  
/* stpblk: skips blanks (white space) */
#ifdef __PROTOTYPE__
char *stpblk(char *p)
#else	/* __PROTOTYPE__ */
char *stpblk(p)
char *p;
#endif	/* __PROTOTYPE__ */
{
while(isspace(*p)) ++p;
return p;
}