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

Function pni_next_nonnull

c/src/core/codec.c:323–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321}
322
323pni_node_t *pni_next_nonnull(pn_data_t *data, pni_node_t *node)
324{
325 while (node) {
326 node = pn_data_node(data, node->next);
327 if (node && node->atom.type != PN_NULL) {
328 return node;
329 }
330 }
331
332 return NULL;
333}
334
335int pni_inspect_exit(void *ctx, pn_data_t *data, pni_node_t *node)
336{

Callers 1

pni_inspect_exitFunction · 0.85

Calls 1

pn_data_nodeFunction · 0.85

Tested by

no test coverage detected