| 195 | |
| 196 | typedef xml_memory_management_function_storage<int> xml_memory; |
| 197 | PUGI__NS_END |
| 198 | |
| 199 | // String utilities |
| 200 | PUGI__NS_BEGIN |
| 201 | // Get string length |
| 202 | PUGI__FN size_t strlength(const char_t* s) |
| 203 | { |
| 204 | assert(s); |
| 205 | |
| 206 | #ifdef PUGIXML_WCHAR_MODE |
| 207 | return wcslen(s); |
| 208 | #else |
| 209 | return strlen(s); |
| 210 | #endif |
| 211 | } |
| 212 | |
| 213 | // Compare two strings |
| 214 | PUGI__FN bool strequal(const char_t* src, const char_t* dst) |
no outgoing calls
no test coverage detected