@brief Checks if character is digit. Dont use libc implementation of it to prevent locale issues.
| 1122 | public: |
| 1123 | /// @brief Checks if character is digit. Dont use libc implementation of it to prevent locale issues. |
| 1124 | static inline bool isDigit(char c) { |
| 1125 | return c >= '0' && c <= '9'; |
| 1126 | } |
| 1127 | |
| 1128 | /// @brief Matches wildcards, '*' and '?' only supported. |
| 1129 | static bool wildCardMatch(const char* str, const char* pattern); |
nothing calls this directly
no outgoing calls
no test coverage detected