X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=date.c;h=7371bc136a650ccfcee5e87eafb3e738a227d8bd;hb=73848892adeaa421825672bce929b9cc16043fa9;hp=aa4fb3efef5f35d510c14c3a73d497143406f5e7;hpb=68849b544258cafdf42f3ebe9772ee7a346f7147;p=git.git diff --git a/date.c b/date.c index aa4fb3ef..7371bc13 100644 --- a/date.c +++ b/date.c @@ -39,6 +39,34 @@ static const char *weekday_names[] = { }; /* + * The "tz" thing is passed in as this strange "decimal parse of tz" + * thing, which means that tz -0100 is passed in as the integer -100, + * even though it means "sixty minutes off" + */ +const char *show_date(unsigned long time, int tz) +{ + struct tm *tm; + time_t t; + static char timebuf[200]; + int minutes; + + minutes = tz < 0 ? -tz : tz; + minutes = (tz / 100)*60 + (tz % 100); + minutes = tz < 0 ? -minutes : minutes; + t = time - minutes * 60; + tm = gmtime(&t); + if (!tm) + return NULL; + sprintf(timebuf, "%.3s %.3s %d %02d:%02d:%02d %d %+05d", + weekday_names[tm->tm_wday], + month_names[tm->tm_mon], + tm->tm_mday, + tm->tm_hour, tm->tm_min, tm->tm_sec, + tm->tm_year + 1900, tz); + return timebuf; +} + +/* * Check these. And note how it doesn't do the summer-time conversion. * * In my world, it's always summer, and things are probably a bit off