Functions | |
bool | is_space (char *&s) |
Is the next character a space? |
bool is_space | ( | char *& | s | ) |
Check whether the specified input string pointer points to a space character. The function recognizes the no-break space character (i.e. 0x00A0 which in UTF-8 is represented as the code byte sequence 0xC2 0xA0.)
The function increments the input string pointer by the number of bytes the space represents minus 1. (i.e. the input string pointer will be incremented whtn the 0x00A0 character is found.)
s | The string to check for a space character |
Referenced by sswf::TagMetadata::Save().