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

Function snvis

extern/editline/src/vis.c:590–603  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

588}
589
590char *
591snvis(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
605int
606strsvis(char *mbdst, const char *mbsrc, int flags, const char *mbextra)

Callers

nothing calls this directly

Calls 1

istrsenvisxFunction · 0.85

Tested by

no test coverage detected