SkipNonWhiteSpace
char *SkipNonWhiteSpace (const char string[]);
Purpose
Returns a pointer to the first white space character in string.
If there are no white space characters in string before the first ASCII NUL byte, the function returns a pointer to the NUL byte.
Parameters
Input | ||
Name | Type | Description |
string | const char[] | A nul–terminated string. |
Return Value
Name | Type | Description |
pointerToWhiteSpace | char * | A pointer to the first white space character in string. If there are no white space characters in string before the first ASCII NUL byte, a pointer to the ASCII NUL byte. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 4.0 and later