macro_rules! IS_CRLF {
($string:expr) => { ... };
}
Expand description
Checks if the character at the current pointer in the given string is a carriage return followed by a line feed.
§Parameters
string
: A reference to the string to check.
§Return
Returns true
if the character at the current pointer is a carriage return followed by a line feed, and false
otherwise.