1 #ifndef __TIMESTAMP_H__ 2 #define __TIMESTAMP_H__ 3 4 uint32_t clock_ms(void); 5 uint64_t clock_us(void); 6 void timestamp(char *fmt, int index, int start); 7 8 #endif 9 10