diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-26 17:30:12 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-26 17:30:12 +0100 |
commit | dde83349da01f4b2d6a2e4182fc7a3cc627745f6 (patch) | |
tree | 171e9bfee1056d452174663c3b2ce5fcbf288e6b /gmtime.c | |
parent | Add tests (diff) | |
download | libsimple-dde83349da01f4b2d6a2e4182fc7a3cc627745f6.tar.gz libsimple-dde83349da01f4b2d6a2e4182fc7a3cc627745f6.tar.bz2 libsimple-dde83349da01f4b2d6a2e4182fc7a3cc627745f6.tar.xz |
Add libsimple_[e[n]]{local,gm}time, remove dates from man pages, and add blank lines between sections in man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'gmtime.c')
-rw-r--r-- | gmtime.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/gmtime.c b/gmtime.c new file mode 100644 index 0000000..6b120b5 --- /dev/null +++ b/gmtime.c @@ -0,0 +1,60 @@ +/* See LICENSE file for copyright and license details. */ +#include "libsimple.h" +#include <sys/timex.h> +#ifndef TEST + + +int +libsimple_gmtime(struct tm *tm, struct timespec *ts) +{ + struct timex timex; + int r; + + memset(&timex, 0, sizeof(timex)); + timex.status = ADJ_NANO; + r = adjtimex(&timex); + if (r == -1) + return -1; + if (ts) { + ts->tv_sec = timex.time.tv_sec; + ts->tv_nsec = timex.time.tv_usec; + } + + if (timex.time.tv_sec % (24 * 60 * 60) == 0) { + if (r == TIME_INS) { + timex.time.tv_sec -= 1; + if (!gmtime_r(&timex.time.tv_sec, tm)) + return -1; + tm->tm_sec += 1; + return 1; + } else if (r == TIME_DEL) { + timex.time.tv_sec += 1; + if (!gmtime_r(&timex.time.tv_sec, tm)) + return -1; + } else { + if (!gmtime_r(&timex.time.tv_sec, tm)) + return -1; + } + } else if (r == TIME_OOP) { + if (!gmtime_r(&timex.time.tv_sec, tm)) + return -1; + tm->tm_sec += 1; + } else { + if (!gmtime_r(&timex.time.tv_sec, tm)) + return -1; + } + + return 0; +} + + +#else +#include "test.h" + +int +main(void) +{ + /* TODO test */ +} + +#endif |