20 lines
229 B
C
20 lines
229 B
C
#ifndef _TIMESTAMP_H
|
|
#define _TIMESTAMP_H
|
|
|
|
#ifdef __cpluscplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
void timestamp_update();
|
|
uint64_t timestamp_get_sec();
|
|
uint64_t timestamp_get_msec();
|
|
|
|
#ifdef __cpluscplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|