| 701 | */ |
| 702 | |
| 703 | int |
| 704 | strvisx(char *mbdst, const char *mbsrc, size_t len, int flags) |
| 705 | { |
| 706 | return istrsenvisx(mbdst, NULL, mbsrc, len, flags, "", NULL); |
| 707 | } |
| 708 | |
| 709 | int |
| 710 | strnvisx(char *mbdst, size_t dlen, const char *mbsrc, size_t len, int flags) |
nothing calls this directly
no test coverage detected