MCPcopy Create free account
hub / github.com/acl-dev/acl / create_node

Function create_node

app/wizard/tpllib.cpp:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109
110
111static tpl_node_t* create_node(int len)
112{
113 tpl_node_t* node = (tpl_node_t*)acl_mymalloc(len+1+sizeof(tpl_node_t));
114 node->len = len;
115 node->val = (char*)(node + 1);
116 node->next = NULL;
117 return node;
118}
119
120
121static void destroy_node(tpl_node_t* node)

Callers 7

tpl_constructFunction · 0.70
tpl_copyFunction · 0.70
tpl_set_section_exFunction · 0.70
tpl_append_sectionFunction · 0.70
create_clusterMethod · 0.50
create_masterMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…