AsciiCam/include/timing.h
Harshit-Dhanwalkar 02926a2623 Organise project
2026-05-13 22:18:22 +05:30

11 lines
170 B
C

#ifndef TIMING_H
#define TIMING_H
#include <time.h>
// Initialize framerate control
void timing_init(int fps);
void timing_sleep(struct timespec *start_time);
#endif