Lines Matching refs:lp_cc
210 char *lp, *lptr, *lp_coord, *lp_cc, *lp_tz; /* line pointer */ in get_tz_countries() local
259 lp_cc = skipwhite(&buff[0]); in get_tz_countries()
260 if (strcspn(lp_cc, WHITESPACE) != CCLEN) { in get_tz_countries()
266 if (strncmp(ccbuf, lp_cc, CCLEN) == 0) { in get_tz_countries()
270 lp_coord = skipwhite(lp_cc + CCLEN); in get_tz_countries()
296 (void) strncpy(cp->ctry_code, lp_cc, CCLEN); in get_tz_countries()
298 (void) strncpy(ccbuf, lp_cc, CCLEN); in get_tz_countries()
452 char *lp_cc, *lp_tz, *lp_otz, *lp_coord, *lp_tzdesc, *ptr, *lptr; in get_timezones_by_country() local
486 lp_cc = skipwhite(&buff[0]); in get_timezones_by_country()
487 if (strcspn(lp_cc, WHITESPACE) != CCLEN) { in get_timezones_by_country()
492 if (strncmp(country->ctry_code, lp_cc, CCLEN) == 0) { in get_timezones_by_country()
496 lp_coord = skipwhite(lp_cc + CCLEN); in get_timezones_by_country()