clibs
Tiny but handy utility libraries for C
Loading...
Searching...
No Matches
clibs_time.h
Go to the documentation of this file.
1
6#ifndef CLIBS_TIME_H
7#define CLIBS_TIME_H
8
9#include <time.h>
10
20struct tm date_create(
21 int year, int month, int day);
22
33struct tm time_create(
34 int year, int month, int day, int hour, int min, int sec);
35
36#endif /* CTIME_UTILS_H */