fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
656 B
24 lines
656 B
#ifndef RAPIDJSON_INTERNAL_STRFUNC_H_
|
|
#define RAPIDJSON_INTERNAL_STRFUNC_H_
|
|
|
|
namespace rapidjson {
|
|
namespace internal {
|
|
|
|
//! Custom strlen() which works on different character types.
|
|
/*! \tparam Ch Character type (e.g. char, wchar_t, short)
|
|
\param s Null-terminated input string.
|
|
\return Number of characters in the string.
|
|
\note This has the same semantics as strlen(), the return value is not number of Unicode codepoints.
|
|
*/
|
|
template <typename Ch>
|
|
inline SizeType StrLen(const Ch* s) {
|
|
const Ch* p = s;
|
|
while (*p != '\0')
|
|
++p;
|
|
return SizeType(p - s);
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace rapidjson
|
|
|
|
#endif // RAPIDJSON_INTERNAL_STRFUNC_H_
|
|
|