aboutsummaryrefslogtreecommitdiff
path: root/src/os/time.h
blob: 503c218349ff4043ab6d25cc52f41fd6a6501a8e (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 mch_delay(uint64_t ms, bool ignoreinput);

#endif