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

Function pn_string_resize

c/src/core/object/string.c:270–277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

268}
269
270int pn_string_resize(pn_string_t *string, size_t size)
271{
272 int err = pn_string_grow(string, size);
273 if (err) return err;
274 string->size = size;
275 string->bytes[size] = '\0';
276 return 0;
277}
278
279int pn_string_copy(pn_string_t *string, pn_string_t *src)
280{

Callers 2

pn_quoteFunction · 0.85
pn_transform_applyFunction · 0.85

Calls 1

pn_string_growFunction · 0.85

Tested by

no test coverage detected