Lines Matching defs:string
359 * This is quite easy. If the supplied string doesn't match the above
363 static float atoq(const char *string)
365 if (!string || !*string) {
369 while (apr_isspace(*string)) {
370 ++string;
376 if (*string != '.' && *string++ != '0') {
380 if (*string == '.') {
386 if (*++string >= '0' && *string <= '9') {
387 i += (*string - '0') * 100;
389 if (*++string >= '0' && *string <= '9') {
390 i += (*string - '0') * 10;
392 if (*++string > '0' && *string <= '9') {
393 i += (*string - '0');
1514 * match, use the longest string from the Accept-Language header
2530 /* Generate the string components for this Alternates entry */