SkipWhiteSpace

char *SkipWhiteSpace (const char string[]);

Purpose

Returns a pointer to the first non–white–space character in string.

If there are no non–white–space characters in string before the first ASCII NULL byte, the function returns a pointer to the NULL byte.

Parameters

Input
Name Type Description
string const char [] A nul–terminated string.

Return Value

Name Type Description
pointerToNon-WhiteSpace char * A pointer to the first non–white–space character in string. If there are no non–white–space characters in string before the first ASCII NUL byte, a pointer to the ASCII NUL byte.