Home | History | Annotate | Download | only in mail

Lines Matching defs:gmtoff

470  * gmtoff string.
477 const char *gmtoff;
518 return zp->gmtoff;
524 * Parse the 'Date:" field into a tm structure and return the gmtoff
624 /* what remains should be the gmtoff string */
693 * Note: We return the gmtoff as a string as "-0000" has special
701 const char *gmtoff;
733 (gmtoff = date_to_tm(date, tm)) != NULL) {
740 * Scan the gmtoff and use it to convert the time to a
752 if (strcmp(gmtoff, "-0000") != 0 &&
753 sscanf(gmtoff, " %1[+-]%2d%2d ", sign, &hour, &min) == 3) {