@brief Check if character is whitespace (space, tab, newline, carriage return) @param c The character to check @return true if c is a whitespace character, false otherwise
| 16 | /// @param c The character to check |
| 17 | /// @return true if c is a whitespace character, false otherwise |
| 18 | inline bool isspace(char c) FL_NOEXCEPT { |
| 19 | return c == ' ' || c == '\t' || c == '\n' || c == '\r'; |
| 20 | } |
| 21 | |
| 22 | /// @brief Check if character is a decimal digit (0-9) |
| 23 | /// @param c The character to check |
no outgoing calls
no test coverage detected