| 897 | } |
| 898 | |
| 899 | static int skip_pvalue(link_ctx *ctx) |
| 900 | { |
| 901 | if (skip_ws(ctx) && read_chr(ctx, '=')) { |
| 902 | if (skip_qstring(ctx) || skip_ptoken(ctx)) { |
| 903 | return 1; |
| 904 | } |
| 905 | } |
| 906 | return 0; |
| 907 | } |
| 908 | |
| 909 | static int skip_param(link_ctx *ctx) |
| 910 | { |
no test coverage detected