| 524 | } |
| 525 | |
| 526 | static int is_quoted_pair(const char *s) |
| 527 | { |
| 528 | int res = -1; |
| 529 | int c; |
| 530 | |
| 531 | if (*s == '\\') { |
| 532 | c = (int) *(s + 1); |
| 533 | if (c && apr_isascii(c)) { |
| 534 | res = 1; |
| 535 | } |
| 536 | } |
| 537 | return (res); |
| 538 | } |
| 539 | |
| 540 | static content_type *analyze_ct(request_rec *r, const char *s) |
| 541 | { |