| 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 ) { |
| 40 | return (*(val + 0) + (*(val + 1) << 8) |
no outgoing calls
no test coverage detected