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

Function read_qstring

modules/http2/h2_push.c:170–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170static int read_qstring(link_ctx *ctx, const char **ps)
171{
172 if (skip_ws(ctx) && read_chr(ctx, '\"')) {
173 size_t end;
174 if (find_chr(ctx, '\"', &end)) {
175 *ps = mk_str(ctx, end);
176 ctx->i = end + 1;
177 return 1;
178 }
179 }
180 return 0;
181}
182
183static int read_ptoken(link_ctx *ctx, const char **ps)
184{

Callers 1

read_pvalueFunction · 0.85

Calls 4

mk_strFunction · 0.85
skip_wsFunction · 0.70
read_chrFunction · 0.70
find_chrFunction · 0.70

Tested by

no test coverage detected