| 701 | #define PARSER_MINF 4 // number is lower than -HUGE_VAL |
| 702 | |
| 703 | inline char next(const char*& _s, const char* _term) |
| 704 | { |
| 705 | return _s != _term |
| 706 | ? *_s++ |
| 707 | : '\0' |
| 708 | ; |
| 709 | } |
| 710 | |
| 711 | static int parser(const char* _s, const char* _term, PrepNumber* _pn) |
| 712 | { |
no outgoing calls
no test coverage detected