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

Function read_chr

modules/http2/h2_proxy_util.c:832–839  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

830}
831
832static int read_chr(link_ctx *ctx, char c)
833{
834 if (ctx->i < ctx->slen && ctx->s[ctx->i] == c) {
835 ++ctx->i;
836 return 1;
837 }
838 return 0;
839}
840
841static int skip_qstring(link_ctx *ctx)
842{

Callers 5

skip_qstringFunction · 0.70
read_linkFunction · 0.70
skip_pvalueFunction · 0.70
skip_paramFunction · 0.70
read_sepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected