char *SkipWhiteSpace (const char string[]);
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.
Input | ||
Name | Type | Description |
string | const char [] | A nul–terminated string. |
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. |