|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sflstr.h"
char *
strskp (
const char *string)
Skips leading spaces in string, and returns a pointer to the first non-blank character. If this is a null, the end of the string was reached.
{
char
*skip = (char *) string;
ASSERT (string);
while (*skip == ' ')
skip++;
return (skip);
}
| | << | < | > | >> |
|