summaryrefslogtreecommitdiff
path: root/ctime.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2007-03-04 18:35:36 +0000
committerIan C <ianc@noddybox.co.uk>2007-03-04 18:35:36 +0000
commit954af9179665457b40453a0417ddf5b3949a0449 (patch)
treee3772817de5c79e29b602ebe47fe0129793f1470 /ctime.c
parent892e6e107dbf2386831bd00e7f1c2a0bbe8b2cbb (diff)
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'ctime.c')
-rw-r--r--ctime.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/ctime.c b/ctime.c
new file mode 100644
index 0000000..5ee8451
--- /dev/null
+++ b/ctime.c
@@ -0,0 +1,17 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <time.h>
+
+int main(int argc, char *argv[])
+{
+ time_t t;
+
+ if (argc>1)
+ t=(time_t)strtol(argv[1],NULL,0);
+ else
+ t=time(NULL);
+
+ printf("%s",ctime(&t));
+
+ return 0;
+}