Lines Matching defs:gmtoff
485 * gmtoff string.
492 const char *gmtoff;
533 return zp->gmtoff;
539 * Parse the 'Date:" field into a tm structure and return the gmtoff
639 /* what remains should be the gmtoff string */
708 * Note: We return the gmtoff as a string as "-0000" has special
716 const char *gmtoff;
748 (gmtoff = date_to_tm(date, tm)) != NULL) {
755 * Scan the gmtoff and use it to convert the time to a
767 if (strcmp(gmtoff, "-0000") != 0 &&
768 sscanf(gmtoff, " %1[+-]%2d%2d ", sign, &hour, &min) == 3) {