File: stpblk.c

package info (click to toggle)
robotour 3.1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,596 kB
  • ctags: 2,972
  • sloc: cpp: 17,705; sh: 3,060; ansic: 2,778; makefile: 144
file content (14 lines) | stat: -rwxr-xr-x 241 bytes parent folder | download | duplicates (5)
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;
}