Lines Matching refs:what
206 const char * const *what; in checkday() local
209 what = &weekday[0]; in checkday()
211 what = &Curl_wkday[0]; in checkday()
213 if(strcasecompare(check, what[0])) { in checkday()
217 what++; in checkday()
225 const char * const *what; in checkmonth() local
228 what = &Curl_month[0]; in checkmonth()
230 if(strcasecompare(check, what[0])) { in checkmonth()
234 what++; in checkmonth()
245 const struct tzinfo *what; in checktz() local
248 what = tz; in checktz()
250 if(strcasecompare(check, what->name)) { in checktz()
254 what++; in checktz()
256 return found?what->offset*60:-1; in checktz()