| 5800 | } |
| 5801 | |
| 5802 | PUGI__FN xml_parse_result xml_document::load_file(const char* path_, unsigned int options, xml_encoding encoding) |
| 5803 | { |
| 5804 | reset(); |
| 5805 | |
| 5806 | FILE* file = fopen(path_, "rb"); |
| 5807 | |
| 5808 | return impl::load_file_impl(*this, file, options, encoding); |
| 5809 | } |
| 5810 | |
| 5811 | PUGI__FN xml_parse_result xml_document::load_file(const wchar_t* path_, unsigned int options, xml_encoding encoding) |
| 5812 | { |
no test coverage detected