MCPcopy Index your code
hub / github.com/commonmark/cmark / cmark_node_next

Function cmark_node_next

src/node.c:227–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227cmark_node *cmark_node_next(cmark_node *node) {
228 if (node == NULL) {
229 return NULL;
230 } else {
231 return node->next;
232 }
233}
234
235cmark_node *cmark_node_previous(cmark_node *node) {
236 if (node == NULL) {

Callers 3

accessorsFunction · 0.85
create_treeFunction · 0.85
render_htmlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected