tm               5272 src/dps8/dps8_cpu.c     struct tm cpu_tm = {0};
tm               9683 src/dps8/dps8_ins.c            struct tm tm = {0};
tm               9686 src/dps8/dps8_ins.c            tm.tm_hour = u_seconds / 3600;
tm               9687 src/dps8/dps8_ins.c            tm.tm_min = (u_seconds % 3600) / 60;
tm               9688 src/dps8/dps8_ins.c            tm.tm_sec = u_seconds % 60;
tm               9689 src/dps8/dps8_ins.c            strftime(elapsed_time, sizeof(elapsed_time), "%H:%M:%S", &tm);
tm               9694 src/dps8/dps8_ins.c            tm.tm_hour = s_seconds / 3600;
tm               9695 src/dps8/dps8_ins.c            tm.tm_min = (s_seconds % 3600) / 60;
tm               9696 src/dps8/dps8_ins.c            tm.tm_sec = s_seconds % 60;
tm               9697 src/dps8/dps8_ins.c            strftime(elapsed_time, sizeof(elapsed_time), "%H:%M:%S", &tm);
tm               1714 src/dps8/dps8_utils.c 
tm                380 src/libsir/include/sir/helpers.h struct tm* _sir_localtime(const time_t* timer, struct tm* buf) {
tm                385 src/libsir/include/sir/helpers.h     struct tm* ret = localtime_s(timer, buf);
tm                401 src/libsir/include/sir/helpers.h     struct tm* ret = localtime_r(timer, buf);
tm                403 src/libsir/include/sir/helpers.h     struct tm* ret = localtime(timer);
tm                424 src/libsir/include/sir/helpers.h     struct tm timebuf;
tm                425 src/libsir/include/sir/helpers.h     const struct tm* ptb = _sir_localtime(&now, &timebuf);
tm               3291 src/simh/scp.c struct tm *tmnow;
tm               10351 src/simh/scp.c         struct tm *now = gmtime(&tnow);