| 400 | } |
| 401 | |
| 402 | void tpl_init(tpl_t *tpl) |
| 403 | { |
| 404 | /* Set everything to NULL */ |
| 405 | (void)memset(tpl, 0, sizeof(tpl_t)); |
| 406 | |
| 407 | tpl->tpl = tpl; |
| 408 | tpl->added_tail = &tpl->added_head; |
| 409 | } |
| 410 | |
| 411 | void tpl_release(tpl_t *tpl) |
| 412 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…