| 617 | } |
| 618 | |
| 619 | size_t pn_value_dump(pn_bytes_t frame, char *bytes, uint32_t size) |
| 620 | { |
| 621 | pn_fixed_string_t output = pn_fixed_string(bytes, size); |
| 622 | size_t fsize = pni_value_dump(frame, &output); |
| 623 | pn_fixed_string_terminate(&output); |
| 624 | return fsize; |
| 625 | } |
nothing calls this directly
no test coverage detected