mirror of
https://github.com/Harshit-Dhanwalkar/AsciiCam.git
synced 2026-06-09 10:25:12 +02:00
11 lines
170 B
C
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
|