Lines Matching refs:tlc
311 char *tlc; member
379 cp->tlc = strdup(t); in read_iso3166_table()
380 if (cp->tlc == NULL) in read_iso3166_table()
388 add_zone_to_country(int lineno, const char *tlc, const char *descr, in add_zone_to_country() argument
394 if (tlc[0] < 'A' || tlc[0] > 'Z' || tlc[1] < 'A' || tlc[1] > 'Z') in add_zone_to_country()
396 lineno, tlc); in add_zone_to_country()
398 cp = &countries[CODE2INT(tlc)]; in add_zone_to_country()
401 lineno, tlc); in add_zone_to_country()
477 char *line, *tlc, *file, *descr, *p; in read_zones() local
493 tlc = strsep(&line, "\t"); in read_zones()
494 if (strlen(tlc) != 2) in read_zones()
496 path_zonetab, lineno, tlc); in read_zones()
516 add_zone_to_country(lineno, tlc, descr, file, cont); in read_zones()