Lines Matching refs:string
181 static zic_t gethms(const char * string, const char * errstring);
362 static struct lookup const * byword(const char * string,
608 verror(const char *const string, va_list args)
618 vfprintf(stderr, string, args);
626 error(const char *const string, ...)
629 va_start(args, string);
630 verror(string, args);
636 warning(const char *const string, ...)
640 va_start(args, string);
641 verror(string, args);
721 /* Compare the string KEY to the link B, for bsearch. */
1397 freshly allocated string. TARGET should be a relative file name, and
1765 ** Convert a string of one of the forms
1768 ** A null string maps to zero.
1773 gethms(char const *string, char const *errstring)
1781 if (string == NULL || *string == '\0')
1783 if (*string == '-') {
1785 ++string;
1787 switch (sscanf(string,
2377 writezone(const char *const name, const char *const string, char version,
2702 putc(0, fp); /* empty-string abbreviation */
2779 fprintf(fp, "\n%s\n", string);
2985 /* Store into RESULT a POSIX.1-2017 TZ string that represent the future
2988 negative integer if no such TZ string exissts. */
3010 /* Internet RFC 8536 section 5.1 says to use an empty TZ string if
3418 /* The earliest transition into a time governed by the TZ string. */
3428 /* Omit trailing transitions deducible from the TZ string,
3878 newabbr(const char *string)
3882 if (strcmp(string, GRANDPARENTED) != 0) {
3886 cp = string;
3891 if (noise && cp - string < 3)
3893 if (cp - string > ZIC_MAX_ABBR_LEN_WO_WARN)
3898 warning("%s (%s)", mp, string);
3900 i = strlen(string) + 1;
3905 strcpy(&chars[charcnt], string);