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

Function skip_ws

modules/http2/h2_push.c:131–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131static int skip_ws(link_ctx *ctx)
132{
133 char c;
134 while (ctx->i < ctx->slen
135 && (((c = ctx->s[ctx->i]) == ' ') || (c == '\t'))) {
136 ++ctx->i;
137 }
138 return (ctx->i < ctx->slen);
139}
140
141static int find_chr(link_ctx *ctx, char c, size_t *pidx)
142{

Callers 7

read_qstringFunction · 0.70
read_ptokenFunction · 0.70
read_linkFunction · 0.70
read_pnameFunction · 0.70
read_pvalueFunction · 0.70
read_paramFunction · 0.70
read_sepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected