Lines Matching refs:what
212 const char * const *what; in checkday() local
215 what = &weekday[0]; in checkday()
217 what = &Curl_wkday[0]; in checkday()
219 if(strcasecompare(check, what[0])) { in checkday()
223 what++; in checkday()
231 const char * const *what; in checkmonth() local
234 what = &Curl_month[0]; in checkmonth()
236 if(strcasecompare(check, what[0])) { in checkmonth()
240 what++; in checkmonth()
251 const struct tzinfo *what; in checktz() local
254 what = tz; in checktz()
256 if(strcasecompare(check, what->name)) { in checktz()
260 what++; in checktz()
262 return found?what->offset*60:-1; in checktz()