| 151 | } |
| 152 | |
| 153 | static int read_chr(link_ctx *ctx, char c) |
| 154 | { |
| 155 | if (ctx->i < ctx->slen && ctx->s[ctx->i] == c) { |
| 156 | ++ctx->i; |
| 157 | return 1; |
| 158 | } |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | static char *mk_str(link_ctx *ctx, size_t end) |
| 163 | { |
no outgoing calls
no test coverage detected