| 872 | } |
| 873 | |
| 874 | static inline int parseInt(const char **token) { |
| 875 | (*token) += strspn((*token), " \t"); |
| 876 | int i = atoi((*token)); |
| 877 | (*token) += strcspn((*token), " \t\r"); |
| 878 | return i; |
| 879 | } |
| 880 | |
| 881 | // Tries to parse a floating point number located at s. |
| 882 | // |
no outgoing calls
no test coverage detected