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] = '<';
2508 addtype(gmtoff, rawoff, dstoff, abbr, isdst, ttisstd, ttisgmt)
2513 addtype(gmtoff, abbr, isdst, ttisstd, ttisgmt)
2516 const char * const abbr;
2554 strcmp(abbr, &chars[abbrinds[i]]) == 0 &&
2581 if (strcmp(&chars[j], abbr) == 0)
2584 newabbr(abbr);
2685 itsabbr(abbr, word)
2686 register const char * abbr;
2689 if (lowerit(*abbr) != lowerit(*word))
2692 while (*++abbr != '\0')
2696 } while (lowerit(*word++) != lowerit(*abbr));