Helper function to check if a character is whitespace
| 17 | |
| 18 | // Helper function to check if a character is whitespace |
| 19 | inline bool isSpace(char c) { |
| 20 | return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f' || c == '\v'; |
| 21 | } |
| 22 | |
| 23 | // Custom integer parsing function for signed 32-bit integers |
| 24 | bool parse_i32(const char* str, fl::i32& result) { |