| 573 | */ |
| 574 | |
| 575 | char * |
| 576 | svis(char *mbdst, int c, int flags, int nextc, const char *mbextra) |
| 577 | { |
| 578 | char cc[2]; |
| 579 | int ret; |
| 580 | |
| 581 | cc[0] = c; |
| 582 | cc[1] = nextc; |
| 583 | |
| 584 | ret = istrsenvisx(mbdst, NULL, cc, 1, flags, mbextra, NULL); |
| 585 | if (ret < 0) |
| 586 | return NULL; |
| 587 | return mbdst + ret; |
| 588 | } |
| 589 | |
| 590 | char * |
| 591 | snvis(char *mbdst, size_t dlen, int c, int flags, int nextc, const char *mbextra) |
nothing calls this directly
no test coverage detected