/**************/ /* timer.h */ /**************/ #ifndef TIMER_H #define TIMER_H #define MAX_TIMER 10 #ifdef __cplusplus extern "C" { #endif void start_timer(int i); double stop_timer(int i); #ifdef __cplusplus } #endif #endif /* TIMER_H */