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

Function attr_char

modules/http2/h2_push.c:74–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72} link_ctx;
73
74static int attr_char(char c)
75{
76 switch (c) {
77 case '!':
78 case '#':
79 case '$':
80 case '&':
81 case '+':
82 case '-':
83 case '.':
84 case '^':
85 case '_':
86 case '`':
87 case '|':
88 case '~':
89 return 1;
90 default:
91 return apr_isalnum(c);
92 }
93}
94
95static int ptoken_char(char c)
96{

Callers 1

read_pnameFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected