|
noexcept |
Checks whether a given character is a space or a horizontal tab.
ch | is the character to check. |
ch
is a space (' ', 0x20
) or a horizontal tab ('\t', 9
), or a zero value otherwise.Function repreats the functionality of the standard C99 isblank function.