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

Function is_qtext

modules/http/mod_mime.c:517–524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515}
516
517static int is_qtext(char c)
518{
519 int res;
520
521 res = (apr_isascii(c) && (c != '"') && (c != '\\') && (c != '\n'))
522 ? 1 : -1;
523 return res;
524}
525
526static int is_quoted_pair(const char *s)
527{

Callers 1

analyze_ctFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected