Load from a string */
| 503 | |
| 504 | /* Load from a string */ |
| 505 | int tpl_from_string(tpl_t *tpl, const char *buffer, int len) |
| 506 | { |
| 507 | return tpl_construct(tpl, buffer, buffer + len); |
| 508 | } |
| 509 | |
| 510 | /* Recursively clear added content */ |
| 511 | void tpl_reset(tpl_t* tpl) |
nothing calls this directly
no test coverage detected
searching dependent graphs…