| 129 | } |
| 130 | |
| 131 | static int skip_ws(link_ctx *ctx) |
| 132 | { |
| 133 | char c; |
| 134 | while (ctx->i < ctx->slen |
| 135 | && (((c = ctx->s[ctx->i]) == ' ') || (c == '\t'))) { |
| 136 | ++ctx->i; |
| 137 | } |
| 138 | return (ctx->i < ctx->slen); |
| 139 | } |
| 140 | |
| 141 | static int find_chr(link_ctx *ctx, char c, size_t *pidx) |
| 142 | { |
no outgoing calls
no test coverage detected