| 227 | } |
| 228 | |
| 229 | static int read_pvalue(link_ctx *ctx, const char **pvalue) |
| 230 | { |
| 231 | if (skip_ws(ctx) && read_chr(ctx, '=')) { |
| 232 | if (read_qstring(ctx, pvalue) || read_ptoken(ctx, pvalue)) { |
| 233 | return 1; |
| 234 | } |
| 235 | } |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | static int read_param(link_ctx *ctx) |
| 240 | { |
no test coverage detected