| 254 | } |
| 255 | |
| 256 | static inline void tput16(PutByteContext *pb, const int le, const uint16_t value) |
| 257 | { |
| 258 | le ? bytestream2_put_le16(pb, value) : bytestream2_put_be16(pb, value); |
| 259 | } |
| 260 | |
| 261 | static inline void tput32(PutByteContext *pb, const int le, const uint32_t value) |
| 262 | { |
no outgoing calls
no test coverage detected