| 7710 | #endif |
| 7711 | |
| 7712 | PUGI_IMPL_FN xml_parse_result xml_document::load_string(const char_t* contents, unsigned int options) |
| 7713 | { |
| 7714 | // Force native encoding (skip autodetection) |
| 7715 | #ifdef PUGIXML_WCHAR_MODE |
| 7716 | xml_encoding encoding = encoding_wchar; |
| 7717 | #else |
| 7718 | xml_encoding encoding = encoding_utf8; |
| 7719 | #endif |
| 7720 | |
| 7721 | return load_buffer(contents, impl::strlength(contents) * sizeof(char_t), options, encoding); |
| 7722 | } |
| 7723 | |
| 7724 | PUGI_IMPL_FN xml_parse_result xml_document::load(const char_t* contents, unsigned int options) |
| 7725 | { |