| 918 | } |
| 919 | |
| 920 | static int read_sep(link_ctx *ctx) |
| 921 | { |
| 922 | if (skip_ws(ctx) && read_chr(ctx, ',')) { |
| 923 | return 1; |
| 924 | } |
| 925 | return 0; |
| 926 | } |
| 927 | |
| 928 | static size_t subst_str(link_ctx *ctx, int start, int end, const char *ns) |
| 929 | { |
no test coverage detected