Initial creation of tmpctx. */
| 119 | |
| 120 | /* Initial creation of tmpctx. */ |
| 121 | void setup_tmpctx(void) |
| 122 | { |
| 123 | /* Don't call me twice! */ |
| 124 | assert(!tmpctx); |
| 125 | tmpctx = tal_arr_label(NULL, char, 0, "tmpctx"); |
| 126 | } |
| 127 | |
| 128 | /* Free any children of tmpctx. */ |
| 129 | void clean_tmpctx(void) |
no outgoing calls
no test coverage detected