|
|
| version 1.1, 2013/03/07 15:41:11 | version 1.1.2.1, 2013/03/07 15:41:11 |
|---|---|
| Line 0 | Line 1 |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <time.h> | |
| #include <elwix.h> | |
| int | |
| main(int argc, char **argv) | |
| { | |
| time_t tim; | |
| struct tm *tm; | |
| char str[BUFSIZ]; | |
| if (argc < 2) | |
| return 1; | |
| memset(str, 0, sizeof str); | |
| tim = time_Parse(argv[1]); | |
| printf("time_t=%u\n", tim); | |
| tm = localtime(&tim); | |
| strftime(str, sizeof str, "%Y-%m-%d %H:%M:%S", tm); | |
| printf("Time:: %s\n", str); | |
| return 0; | |
| } |