| 32 | |
| 33 | static inline int/*bool*/ is_space( char c ) { return (c == ' ' || c == '\t'); } |
| 34 | static inline int/*bool*/ is_num( char c ) { return (c >= '0' && c <= '9'); } |
| 35 | |
| 36 | static inline unsigned lower_byte( char b ) { return b | 0x20; } |
| 37 | static inline unsigned lower_4bytes( unsigned d ) { return d | 0x20202020; } |
no outgoing calls
no test coverage detected