MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / strSkipWord

Function strSkipWord

Source/3rdParty/bx/src/string.cpp:615–619  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

613 }
614
615 static const char* strSkipWord(const char* _str, int32_t _max)
616 {
617 for (char ch = *_str++; 0 < _max && (isAlphaNum(ch) || '_' == ch); ch = *_str++, --_max) {};
618 return _str-1;
619 }
620
621 StringView strWord(const StringView& _str)
622 {

Callers 1

strWordFunction · 0.85

Calls 1

isAlphaNumFunction · 0.85

Tested by

no test coverage detected