MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / StrLen

Function StrLen

rapidjson/internal/strfunc.h:30–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28*/
29template <typename Ch>
30inline SizeType StrLen(const Ch* s) {
31 const Ch* p = s;
32 while (*p) ++p;
33 return SizeType(p - s);
34}
35
36//! Returns number of code points in a encoded string.
37template<typename Encoding>

Callers 9

GenericStringRefMethod · 0.85
StringRefFunction · 0.85
document.hFile · 0.85
StringMethod · 0.85
KeyMethod · 0.85
GenericPointerMethod · 0.85
AppendMethod · 0.85
StringMethod · 0.85
KeyMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected