blob: 1511977a3e58d64f116b16ef0ea37f62a9ff5eca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|