Lines Matching refs:abbr
195 static void newabbr(const char * abbr);
2824 doabbr(char *abbr, struct zone const *zp, char const *letters,
2841 sprintf(abbr, format, letters);
2843 strcpy(abbr, slashp + 1);
2845 memcpy(abbr, format, slashp - format);
2846 abbr[slashp - format] = '\0';
2848 len = strlen(abbr);
2851 for (cp = abbr; is_alpha(*cp); cp++)
2855 abbr[len + 2] = '\0';
2856 abbr[len + 1] = '>';
2857 memmove(abbr + 1, abbr, len);
2858 abbr[0] = '<';
3485 addtype(zic_t utoff, char const *abbr, bool isdst, bool ttisstd, bool ttisut)
3497 if (strcmp(&chars[j], abbr) == 0)
3500 newabbr(abbr);
3640 itsabbr(register const char *abbr, register const char *word)
3642 if (lowerit(*abbr) != lowerit(*word))
3645 while (*++abbr != '\0')
3649 } while (lowerit(*word++) != lowerit(*abbr));
3656 ciprefix(char const *abbr, char const *word)
3659 if (!*abbr)
3661 while (lowerit(*abbr++) == lowerit(*word++));