VR-Vantage 2.2 API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
strfunc.h
Go to the documentation of this file.
1 #ifndef RAPIDJSON_INTERNAL_STRFUNC_H_
2 #define RAPIDJSON_INTERNAL_STRFUNC_H_
3 
4 namespace rapidjson {
5 namespace internal {
6 
8 
13 template <typename Ch>
14 inline SizeType StrLen(const Ch* s) {
15  const Ch* p = s;
16  while (*p != '\0')
17  ++p;
18  return SizeType(p - s);
19 }
20 
21 } // namespace internal
22 } // namespace rapidjson
23 
24 #endif // RAPIDJSON_INTERNAL_STRFUNC_H_


Copyright © 2005-2017 VT MÄK. All Rights Reserved (www.mak.com)