| 259 | } |
| 260 | |
| 261 | static inline void tput32(PutByteContext *pb, const int le, const uint32_t value) |
| 262 | { |
| 263 | le ? bytestream2_put_le32(pb, value) : bytestream2_put_be32(pb, value); |
| 264 | } |
| 265 | |
| 266 | static inline void tput64(PutByteContext *pb, const int le, const uint64_t value) |
| 267 | { |
no outgoing calls
no test coverage detected