| 588 | } |
| 589 | |
| 590 | char * |
| 591 | snvis(char *mbdst, size_t dlen, int c, int flags, int nextc, const char *mbextra) |
| 592 | { |
| 593 | char cc[2]; |
| 594 | int ret; |
| 595 | |
| 596 | cc[0] = c; |
| 597 | cc[1] = nextc; |
| 598 | |
| 599 | ret = istrsenvisx(mbdst, &dlen, cc, 1, flags, mbextra, NULL); |
| 600 | if (ret < 0) |
| 601 | return NULL; |
| 602 | return mbdst + ret; |
| 603 | } |
| 604 | |
| 605 | int |
| 606 | strsvis(char *mbdst, const char *mbsrc, int flags, const char *mbextra) |
nothing calls this directly
no test coverage detected