| 769 | } |
| 770 | |
| 771 | static inline int parseInt(const char **token) { |
| 772 | (*token) += strspn((*token), " \t"); |
| 773 | int i = atoi((*token)); |
| 774 | (*token) += strcspn((*token), " \t\r"); |
| 775 | return i; |
| 776 | } |
| 777 | |
| 778 | // Tries to parse a floating point number located at s. |
| 779 | // |
no outgoing calls
no test coverage detected