! Determine if character is a separator. */
| 41 | |
| 42 | /*! Determine if character is a separator. */ |
| 43 | static inline bool isSep(const char c) { |
| 44 | return (c == ' ') || (c == '\t'); |
| 45 | } |
| 46 | |
| 47 | /*! Parse separator. */ |
| 48 | static inline const char* parseSep(const char*& token) { |