Home | History | Annotate | Download | only in unittest

Lines Matching refs:Ch

44 template <typename Ch>

45 inline unsigned StrLen(const Ch* s) {
46 const Ch* p = s;
51 template<typename Ch>
52 inline int StrCmp(const Ch* s1, const Ch* s2) {
57 template <typename Ch>
58 inline Ch* StrDup(const Ch* str) {
59 size_t bufferSize = sizeof(Ch) * (StrLen(str) + 1);
60 Ch* buffer = (Ch*)malloc(bufferSize);