| 808 | } |
| 809 | |
| 810 | static int skip_ws(link_ctx *ctx) |
| 811 | { |
| 812 | char c; |
| 813 | while (ctx->i < ctx->slen |
| 814 | && (((c = ctx->s[ctx->i]) == ' ') || (c == '\t'))) { |
| 815 | ++ctx->i; |
| 816 | } |
| 817 | return (ctx->i < ctx->slen); |
| 818 | } |
| 819 | |
| 820 | static int find_chr(link_ctx *ctx, char c, int *pidx) |
| 821 | { |
no outgoing calls
no test coverage detected