Listing 5: TimeUtils.c.

#include "TimeUtils.h"
#include <time.h>

struct tm getCurrentDateTime() {
    struct tm loctime;
    time_t curtime = time(NULL);
    localtime_r(&curtime, &loctime);
    return loctime;
}