shithub: femtolisp

ref: ed84debe7fb8a8932b4df46ded4ba0ac30bf2a6a
dir: /timefuncs.h/

View raw version
#ifndef TIMEFUNCS_H_
#define TIMEFUNCS_H_

uint64_t i64time(void);
double clock_now(void);
void timestring(double seconds, char *buffer, size_t len);
double parsetime(const char *str);
void sleep_ms(int ms);

#endif