MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / svis

Function svis

extern/editline/src/vis.c:575–588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573 */
574
575char *
576svis(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
590char *
591snvis(char *mbdst, size_t dlen, int c, int flags, int nextc, const char *mbextra)

Callers

nothing calls this directly

Calls 1

istrsenvisxFunction · 0.85

Tested by

no test coverage detected