| 839 | } |
| 840 | |
| 841 | static int skip_qstring(link_ctx *ctx) |
| 842 | { |
| 843 | if (skip_ws(ctx) && read_chr(ctx, '\"')) { |
| 844 | int end; |
| 845 | if (find_chr(ctx, '\"', &end)) { |
| 846 | ctx->i = end + 1; |
| 847 | return 1; |
| 848 | } |
| 849 | } |
| 850 | return 0; |
| 851 | } |
| 852 | |
| 853 | static int skip_ptoken(link_ctx *ctx) |
| 854 | { |
no test coverage detected