macro_rules! IS_ASCII { ($string:expr) => { ... }; }
Expand description
Checks if the current character in the string is an ASCII character.
§Parameters
string
: A reference to a struct containing a pointer to the current character in the string.
§Return
Returns true
if the current character is an ASCII character (i.e., its value is less than or equal to 0x7F),
and false
otherwise.