Macro libyml::IS_Z

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

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

§Parameters

  • $string: A reference to the string to check.

§Return

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