| 830 | } |
| 831 | |
| 832 | static int read_chr(link_ctx *ctx, char c) |
| 833 | { |
| 834 | if (ctx->i < ctx->slen && ctx->s[ctx->i] == c) { |
| 835 | ++ctx->i; |
| 836 | return 1; |
| 837 | } |
| 838 | return 0; |
| 839 | } |
| 840 | |
| 841 | static int skip_qstring(link_ctx *ctx) |
| 842 | { |
no outgoing calls
no test coverage detected