| 147 | } |
| 148 | |
| 149 | static __inline void |
| 150 | be16enc(void *pp, uint16_t u) |
| 151 | { |
| 152 | uint8_t *p = (uint8_t *)pp; |
| 153 | |
| 154 | p[0] = (u >> 8) & 0xff; |
| 155 | p[1] = u & 0xff; |
| 156 | } |
| 157 | |
| 158 | static __inline void |
| 159 | be32enc(void *pp, uint32_t u) |
no outgoing calls
no test coverage detected