chundoong-lab-ta/SHPC2022/vectorio/timer.h

17 lines
201 B
C
Raw Normal View History

#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