Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/httpd
/ is_token
Function
is_token
modules/http/mod_mime.c:508–515 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
506
}
507
508
static int is_token(char c)
509
{
510
int res;
511
512
res = (apr_isascii(c) && apr_isgraph(c)
513
&& (strchr(tspecial, c) == NULL)) ? 1 : -1;
514
return res;
515
}
516
517
static int is_qtext(char c)
518
{
Callers
1
analyze_ct
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected