VR-Vantage 2.4 API Documentation
Home
Modules
Namespaces
Classes
Files
Libraries
Examples
Tutorials
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
rapidjson
internal
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-2018 VT MAK. All Rights Reserved (
www.mak.com
)