Lines Matching defs:abbr
195 static void newabbr(const char * abbr);
2876 doabbr(char *abbr, struct zone const *zp, char const *letters,
2893 sprintf(abbr, format, letters);
2895 strcpy(abbr, slashp + 1);
2897 memcpy(abbr, format, slashp - format);
2898 abbr[slashp - format] = '\0';
2900 len = strlen(abbr);
2903 for (cp = abbr; is_alpha(*cp); cp++)
2907 abbr[len + 2] = '\0';
2908 abbr[len + 1] = '>';
2909 memmove(abbr + 1, abbr, len);
2910 abbr[0] = '<';
3536 addtype(zic_t utoff, char const *abbr, bool isdst, bool ttisstd, bool ttisut)
3548 if (strcmp(&chars[j], abbr) == 0)
3551 newabbr(abbr);
3691 itsabbr(register const char *abbr, register const char *word)
3693 if (lowerit(*abbr) != lowerit(*word))
3696 while (*++abbr != '\0')
3700 } while (lowerit(*word++) != lowerit(*abbr));
3707 ciprefix(char const *abbr, char const *word)
3710 if (!*abbr)
3712 while (lowerit(*abbr++) == lowerit(*word++));