| 790 | } |
| 791 | |
| 792 | static void DateFromTimestamp(const time_t rawtime, char *out, int maxLen) |
| 793 | { |
| 794 | struct tm *dt = localtime(&rawtime); |
| 795 | strftime(out, maxLen, "%c", dt); |
| 796 | } |
| 797 | |
| 798 | #define MAX_STRINGS (128 * 1000) |
| 799 | static const char *g_strings[MAX_STRINGS]; |