| 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; } |
| 38 | static inline unsigned lower_3bytes( unsigned d ) { return d | 0x202020; } |
| 39 | static inline unsigned read_4bytes( char *val ) { |
no outgoing calls
no test coverage detected