aboutsummaryrefslogtreecommitdiffstats
path: root/localtime.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-26 17:30:12 +0100
committerMattias Andrée <maandree@kth.se>2021-02-26 17:30:12 +0100
commitdde83349da01f4b2d6a2e4182fc7a3cc627745f6 (patch)
tree171e9bfee1056d452174663c3b2ce5fcbf288e6b /localtime.c
parentAdd tests (diff)
downloadlibsimple-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 'localtime.c')
-rw-r--r--localtime.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/localtime.c b/localtime.c
new file mode 100644
index 0000000..d695da7
--- /dev/null
+++ b/localtime.c
@@ -0,0 +1,60 @@
+/* See LICENSE file for copyright and license details. */
+#include "libsimple.h"
+#include <sys/timex.h>
+#ifndef TEST
+
+
+int
+libsimple_localtime(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 (!localtime_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 (!localtime_r(&timex.time.tv_sec, tm))
+ return -1;
+ } else {
+ if (!localtime_r(&timex.time.tv_sec, tm))
+ return -1;
+ }
+ } else if (r == TIME_OOP) {
+ if (!localtime_r(&timex.time.tv_sec, tm))
+ return -1;
+ tm->tm_sec += 1;
+ } else {
+ if (!localtime_r(&timex.time.tv_sec, tm))
+ return -1;
+ }
+
+ return 0;
+}
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ /* TODO test */
+}
+
+#endif