| 801 | } |
| 802 | |
| 803 | static inline int parseInt(const char **token) { |
| 804 | (*token) += strspn((*token), " \t"); |
| 805 | int i = atoi((*token)); |
| 806 | (*token) += strcspn((*token), " \t\r"); |
| 807 | return i; |
| 808 | } |
| 809 | |
| 810 | // Tries to parse a floating point number located at s. |
| 811 | // |
no outgoing calls
no test coverage detected