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

Method strchrd

Libraries/unrar/unicode.cpp:620–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

618
619
620char* SupportDBCS::strchrd(const char *s, int c)
621{
622 while (*s!=0)
623 if (IsLeadByte[(byte)*s])
624 s+=2;
625 else
626 if (*s==c)
627 return((char *)s);
628 else
629 s++;
630 return(NULL);
631}
632
633
634void SupportDBCS::copychrd(char *dest,const char *src)

Callers 1

strchrdFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected