|
noexcept |
Returns a flag that indicates whether a given character is a control character in the ASCII code space.
ch | is the character to check. |
ch
is an ASCII control character, i.e. belongs to the range from 0 to 0x1f
or equals 0x7f
. Otherwise, the function returns a zero value.The function repeats the standard library iscntrl function.