blob: 3d35e422e3c1e491cf0ba7f4bf16a7f94bc5972b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef NEOVIM_OS_TIME_H
#define NEOVIM_OS_TIME_H
#include <stdint.h>
#include <stdbool.h>
void time_init(void);
void os_delay(uint64_t ms, bool ignoreinput);
#endif // NEOVIM_OS_TIME_H
|