mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 02:42:38 +01:00
15 lines
149 B
C
15 lines
149 B
C
#include "driver2.h"
|
|
#include "time.h"
|
|
|
|
// [F]
|
|
void GetTimeStamp(char *buffer)
|
|
{
|
|
if (buffer)
|
|
sprintf(buffer, "%s %s", __DATE__, __TIME__);
|
|
}
|
|
|
|
|
|
|
|
|
|
|