aboutsummaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/misc.c b/misc.c
new file mode 100644
index 0000000..e5bdeef
--- /dev/null
+++ b/misc.c
@@ -0,0 +1,19 @@
+#include <err.h>
+#include <time.h>
+#include <stdio.h>
+#include "misc.h"
+
+char *
+date(int timestamp)
+{
+ char *buf;
+ time_t *t;
+
+ if(!(buf = malloc(20)))
+ err(1, "malloc");
+
+ t = localtime(&timestamp);
+ strftime(buf, 20, "%Y-%m-%d %H:%M", t);
+
+ return buf;
+} \ No newline at end of file