| 196 | } |
| 197 | |
| 198 | static inline void pn_encoder_writef128(pn_encoder_t *encoder, char *value) { |
| 199 | if (pn_encoder_remaining(encoder) >= 16) { |
| 200 | char* position = encoder->output+encoder->position; |
| 201 | memmove(position, value, 16); |
| 202 | } |
| 203 | encoder->position += 16; |
| 204 | } |
| 205 | |
| 206 | static inline void pn_encoder_writev8(pn_encoder_t *encoder, const pn_bytes_t *value) |
| 207 | { |
no test coverage detected