| 168 | } |
| 169 | |
| 170 | static int read_qstring(link_ctx *ctx, const char **ps) |
| 171 | { |
| 172 | if (skip_ws(ctx) && read_chr(ctx, '\"')) { |
| 173 | size_t end; |
| 174 | if (find_chr(ctx, '\"', &end)) { |
| 175 | *ps = mk_str(ctx, end); |
| 176 | ctx->i = end + 1; |
| 177 | return 1; |
| 178 | } |
| 179 | } |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | static int read_ptoken(link_ctx *ctx, const char **ps) |
| 184 | { |
no test coverage detected