| 171 | |
| 172 | typedef xml_memory_management_function_storage<int> xml_memory; |
| 173 | PUGI__NS_END |
| 174 | |
| 175 | // String utilities |
| 176 | PUGI__NS_BEGIN |
| 177 | // Get string length |
| 178 | PUGI__FN size_t strlength(const char_t* s) |
| 179 | { |
| 180 | assert(s); |
| 181 | |
| 182 | #ifdef PUGIXML_WCHAR_MODE |
| 183 | return wcslen(s); |
| 184 | #else |
| 185 | return strlen(s); |
| 186 | #endif |
| 187 | } |
| 188 | |
| 189 | // Compare two strings |
| 190 | PUGI__FN bool strequal(const char_t* src, const char_t* dst) |
no outgoing calls
no test coverage detected