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

Function tpl_set_field_global

app/wizard/tpllib.cpp:813–823  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

811}
812
813void tpl_set_field_global(tpl_t* tpl, const char* key, const char* val, int len)
814{
815 tpl_tcell_t *section = tpl->first;
816 tpl_set_field(tpl, key, val, len);
817 while (section != NULL)
818 {
819 /* Recursively set in all sections */
820 tpl_set_field_global(section->tpl, key, val, len);
821 section = section->next;
822 }
823}
824
825void tpl_set_field_fmt_global(tpl_t* tpl, const char* key, const char* fmt, ...)
826{

Callers 1

tpl_set_field_fmt_globalFunction · 0.70

Calls 1

tpl_set_fieldFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…