| 882 | } |
| 883 | |
| 884 | static int skip_pname(link_ctx *ctx) |
| 885 | { |
| 886 | if (skip_ws(ctx)) { |
| 887 | int i; |
| 888 | for (i = ctx->i; i < ctx->slen && attr_char(ctx->s[i]); ++i) { |
| 889 | /* nop */ |
| 890 | } |
| 891 | if (i > ctx->i) { |
| 892 | ctx->i = i; |
| 893 | return 1; |
| 894 | } |
| 895 | } |
| 896 | return 0; |
| 897 | } |
| 898 | |
| 899 | static int skip_pvalue(link_ctx *ctx) |
| 900 | { |
no test coverage detected