13 lines
353 B
C
13 lines
353 B
C
|
#include "date_time_handling.h"
|
||
|
#include <time.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
void get_date(char buffer[]) {
|
||
|
// add 1 because strlen does not include the null character
|
||
|
size_t buffer_size = strlen(buffer) + 1;
|
||
|
time_t my_unix_ts = time(NULL);
|
||
|
struct tm* my_tm_local = localtime(&my_unix_ts);
|
||
|
strftime(buffer, buffer_size, "%Y%m%dT%H%M%S", my_tm_local);
|
||
|
}
|
||
|
|