diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-17 22:08:50 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-17 22:08:50 +0200 |
commit | 3e400c3df5572524b7ba08b030f45eb3ba6b7734 (patch) | |
tree | c7fd7a5d391649c7905ee685cfa7fe7b4498cf1b /misc.c | |
parent | 361bb55f01ba28960a8127b0a16c1e7a7a8de61a (diff) | |
download | cforum-3e400c3df5572524b7ba08b030f45eb3ba6b7734.tar.gz |
Add database helper functions
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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(×tamp); + strftime(buf, 20, "%Y-%m-%d %H:%M", t); + + return buf; +}
\ No newline at end of file |