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

Function skip_ws

modules/http2/h2_proxy_util.c:810–818  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

808}
809
810static int skip_ws(link_ctx *ctx)
811{
812 char c;
813 while (ctx->i < ctx->slen
814 && (((c = ctx->s[ctx->i]) == ' ') || (c == '\t'))) {
815 ++ctx->i;
816 }
817 return (ctx->i < ctx->slen);
818}
819
820static int find_chr(link_ctx *ctx, char c, int *pidx)
821{

Callers 7

skip_qstringFunction · 0.70
skip_ptokenFunction · 0.70
read_linkFunction · 0.70
skip_pnameFunction · 0.70
skip_pvalueFunction · 0.70
skip_paramFunction · 0.70
read_sepFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected