MCPcopy Create free account
hub / github.com/apache/qpid-proton / pn_data_print

Function pn_data_print

c/src/core/codec.c:1240–1248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1238}
1239
1240int pn_data_print(pn_data_t *data)
1241{
1242 char buf[1024];
1243 pn_fixed_string_t str = pn_fixed_string(buf, sizeof(buf));
1244 pn_data_inspect(data, &str);
1245 pn_fixed_string_terminate(&str);
1246 printf("%s", buf);
1247 return 0;
1248}
1249
1250int pn_data_format(pn_data_t *data, char *bytes, size_t *size)
1251{

Callers

nothing calls this directly

Calls 3

pn_fixed_stringFunction · 0.85
pn_data_inspectFunction · 0.85

Tested by

no test coverage detected