| 107 | } |
| 108 | |
| 109 | static __inline uint32_t |
| 110 | be32dec(const void *pp) |
| 111 | { |
| 112 | uint8_t const *p = (uint8_t const *)pp; |
| 113 | |
| 114 | return (((unsigned)p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]); |
| 115 | } |
| 116 | |
| 117 | static __inline uint64_t |
| 118 | be64dec(const void *pp) |
no outgoing calls
no test coverage detected