summaryrefslogtreecommitdiff
path: root/src/asctime_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/asctime_r.c')
-rw-r--r--src/asctime_r.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/asctime_r.c b/src/asctime_r.c
new file mode 100644
index 0000000..3a0ec04
--- /dev/null
+++ b/src/asctime_r.c
@@ -0,0 +1,19 @@
+/* $File: asctime_r.c,v 1.1 2012/05/15 17:14:36 christos Exp $ */
+
+#include "file.h"
+#ifndef lint
+FILE_RCSID("@(#)$File: asctime_r.c,v 1.1 2012/05/15 17:14:36 christos Exp $")
+#endif /* lint */
+#include <time.h>
+#include <string.h>
+
+/* asctime_r is not thread-safe anyway */
+char *
+asctime_r(const struct tm *t, char *dst)
+{
+ char *p = asctime(t);
+ if (p == NULL)
+ return NULL;
+ memcpy(dst, p, 26);
+ return dst;
+}