7 /* skip leading whitespace
9 /* #include <stringops.h>
11 /* char *skipblanks(string)
12 /* const char *string;
14 /* skipblanks() returns a pointer to the first non-whitespace
15 /* character in the specified string, or a pointer to the string
16 /* terminator when the string contains all white-space characters.
20 /* The Secure Mailer license must be distributed with this software.
23 /* IBM T.J. Watson Research
25 /* Yorktown Heights, NY 10598, USA
33 /* Utility library. */
35 #include "stringops.h"
37 char *skipblanks(const char *string
)
41 for (cp
= string
; *cp
!= 0; cp
++)