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

Function cmark_node_is_inline

src/node.c:17–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17bool cmark_node_is_inline(cmark_node *node) {
18 if (node == NULL) {
19 return false;
20 }
21 return node->type >= CMARK_NODE_FIRST_INLINE &&
22 node->type <= CMARK_NODE_LAST_INLINE;
23}
24
25bool cmark_node_is_leaf(cmark_node *node) {
26 if (node == NULL) {

Callers 2

classifiersFunction · 0.85
S_can_containFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected