MCPcopy Create free account
hub / github.com/commonmark/cmark / cmark_node_first_child

Function cmark_node_first_child

src/node.c:251–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249}
250
251cmark_node *cmark_node_first_child(cmark_node *node) {
252 if (node == NULL) {
253 return NULL;
254 } else {
255 return node->first_child;
256 }
257}
258
259cmark_node *cmark_node_last_child(cmark_node *node) {
260 if (node == NULL) {

Callers 5

accessorsFunction · 0.85
free_parentFunction · 0.85
create_treeFunction · 0.85
render_htmlFunction · 0.85
render_xmlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected