This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/common/include/timestamp.h

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