Output facilities
| 2466 | |
| 2467 | // Output facilities |
| 2468 | xml_encoding get_write_native_encoding() |
| 2469 | { |
| 2470 | #ifdef PUGIXML_WCHAR_MODE |
| 2471 | return get_wchar_encoding(); |
| 2472 | #else |
| 2473 | return encoding_utf8; |
| 2474 | #endif |
| 2475 | } |
| 2476 | |
| 2477 | xml_encoding get_write_encoding(xml_encoding encoding) |
| 2478 | { |
no test coverage detected