Macro libyml::IS_SPACE

source ·
macro_rules! IS_SPACE {
    ($string:expr) => { ... };
}
Expand description

Checks if the character at the current pointer in the given string is a space character (ASCII 0x20).

§Parameters

  • string: A reference to the string to check.

§Return

  • bool: Returns true if the character is a space character, and false otherwise.