Checks if the character is white space
| Call | |
| #include <vv_sys.h> | |
| int ch_isspace(ch) | |
|
UCHAR ch |
Character to be checked |
| Returns | |
| 1 | The character is white space |
| 0 | The character is not white space |
| Description
If the character code is less than 128, the standard C library function isspace() is called to test the character. If the character code is greater than 128, ch_isspace() returns 0. |
|