Home | History | Annotate | Download | only in tzcode

Lines Matching full:abbr

125 				const char * abbr, int isdst,
128 static int addtype(long gmtoff, const char * abbr, int isdst,
138 static void doabbr(char * abbr, const char * format,
156 static int itsabbr(const char * abbr, const char * word);
161 static void newabbr(const char * abbr);
1875 doabbr(abbr, format, letters, isdst, doquotes)
1876 char * const abbr;
1889 (void) strcpy(abbr, format);
1890 else (void) sprintf(abbr, format, letters);
1892 (void) strcpy(abbr, slashp + 1);
1895 (void) strncpy(abbr, format,
1897 abbr[slashp - format] = '\0';
1901 for (cp = abbr; *cp != '\0'; ++cp)
1905 len = strlen(abbr);
1908 abbr[len + 2] = '\0';
1909 abbr[len + 1] = '>';
1911 abbr[len] = abbr[len - 1];
1912 abbr[0] = '<';
2476 addtype(gmtoff, rawoff, dstoff, abbr, isdst, ttisstd, ttisgmt)
2481 addtype(gmtoff, abbr, isdst, ttisstd, ttisgmt)
2484 const char * const abbr;
2522 strcmp(abbr, &chars[abbrinds[i]]) == 0 &&
2549 if (strcmp(&chars[j], abbr) == 0)
2552 newabbr(abbr);
2653 itsabbr(abbr, word)
2654 register const char * abbr;
2657 if (lowerit(*abbr) != lowerit(*word))
2660 while (*++abbr != '\0')
2664 } while (lowerit(*word++) != lowerit(*abbr));