summaryrefslogtreecommitdiff
path: root/libc/time/ctime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/time/ctime.c')
-rw-r--r--libc/time/ctime.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/libc/time/ctime.c b/libc/time/ctime.c
new file mode 100644
index 0000000..bc7283d
--- /dev/null
+++ b/libc/time/ctime.c
@@ -0,0 +1,26 @@
+
+#include <time.h>
+
+extern void __tm_conv();
+extern void __asc_conv();
+
+char *
+ctime(timep)
+time_t * timep;
+{
+static char cbuf[26];
+ struct tm tmb;
+ struct timezone tz;
+ time_t offt;
+
+ gettimeofday((void*)0, &tz);
+
+ offt = -tz.tz_minuteswest*60L;
+
+ /* tmb.tm_isdst = ? */
+ __tm_conv(&tmb, &timep, offt);
+
+ __asc_conv(cbuf, &tmb);
+
+ return cbuf;
+}