chundoong-lab-ta/SamsungDS22/project/project_skeleton/seq/timer.h

17 lines
201 B
C
Raw Normal View History

2022-09-29 18:01:45 +09:00
#ifndef TIMER_H
#define TIMER_H
void timer_init(int n);
void timer_finalize();
void timer_start(int idx);
void timer_stop(int idx);
double timer_read(int idx);
void timer_reset(int idx);
#endif