MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / charnext

Function charnext

Libraries/unrar/unicode.hpp:49–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47extern SupportDBCS gdbcs;
48
49inline char* charnext(const char *s) {return (char *)(gdbcs.DBCSMode ? gdbcs.charnext(s):s+1);}
50inline size_t strlend(const char *s) {return (uint)(gdbcs.DBCSMode ? gdbcs.strlend(s):strlen(s));}
51inline char* strchrd(const char *s, int c) {return (char *)(gdbcs.DBCSMode ? gdbcs.strchrd(s,c):strchr(s,c));}
52inline char* strrchrd(const char *s, int c) {return (char *)(gdbcs.DBCSMode ? gdbcs.strrchrd(s,c):strrchr(s,c));}

Callers 1

MakeNameUsableFunction · 0.85

Calls 1

charnextMethod · 0.80

Tested by

no test coverage detected