| 1811 | } |
| 1812 | |
| 1813 | struct plugin_timer *global_timer_(struct plugin *p, |
| 1814 | struct timerel t, |
| 1815 | struct command_result *(*cb)(struct command *cmd, void *cb_arg), |
| 1816 | void *cb_arg) |
| 1817 | { |
| 1818 | return new_timer(p, p, "timer", t, cb, cb_arg); |
| 1819 | } |
| 1820 | |
| 1821 | struct plugin_timer *command_timer_(struct command *cmd, |
| 1822 | struct timerel t, |
nothing calls this directly
no test coverage detected