1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6void time_watcher_init(Loop *loop, TimeWatcher *watcher, void *data) FUNC_ATTR_NONNULL_ARG(1) FUNC_ATTR_NONNULL_ARG(2);
7void time_watcher_start(TimeWatcher *watcher, time_cb cb, uint64_t timeout, uint64_t repeat) FUNC_ATTR_NONNULL_ALL;
8void time_watcher_stop(TimeWatcher *watcher) FUNC_ATTR_NONNULL_ALL;
9void time_watcher_close(TimeWatcher *watcher, time_cb cb) FUNC_ATTR_NONNULL_ARG(1);
10#include "nvim/func_attr.h"
11