@brief Check if character is a decimal digit (0-9) @param c The character to check @return true if c is a digit, false otherwise
| 23 | /// @param c The character to check |
| 24 | /// @return true if c is a digit, false otherwise |
| 25 | inline bool isdigit(char c) FL_NOEXCEPT { |
| 26 | return c >= '0' && c <= '9'; |
| 27 | } |
| 28 | |
| 29 | /// @brief Convert character to lowercase |
| 30 | /// @param c The character to convert |
no outgoing calls
no test coverage detected