| 907 | } |
| 908 | |
| 909 | static int skip_param(link_ctx *ctx) |
| 910 | { |
| 911 | if (skip_ws(ctx) && read_chr(ctx, ';')) { |
| 912 | if (skip_pname(ctx)) { |
| 913 | skip_pvalue(ctx); /* value is optional */ |
| 914 | return 1; |
| 915 | } |
| 916 | } |
| 917 | return 0; |
| 918 | } |
| 919 | |
| 920 | static int read_sep(link_ctx *ctx) |
| 921 | { |
no test coverage detected