This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
ics_cli/src/date_time_handling.c

13 lines
353 B
C
Raw Normal View History

2023-08-15 16:31:07 +02:00
#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);
}