MCPcopy Create free account
hub / github.com/apache/httpd / is_quoted_pair

Function is_quoted_pair

modules/http/mod_mime.c:526–538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526static 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
540static content_type *analyze_ct(request_rec *r, const char *s)
541{

Callers 1

analyze_ctFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected