blob: f8e65e0c4735d831e59f9abd41ee771900543352 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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 milliseconds, bool ignoreinput);
void os_microdelay(uint64_t microseconds, bool ignoreinput);
#endif // NEOVIM_OS_TIME_H
|