File: stpblk.c

package info (click to toggle)
dmucs 0.6.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,240 kB
  • sloc: ansic: 5,053; sh: 3,557; cpp: 2,397; makefile: 64; perl: 26
file content (14 lines) | stat: -rw-r--r-- 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;
}