Output facilities
| 2650 | |
| 2651 | // Output facilities |
| 2652 | PUGI__FN xml_encoding get_write_native_encoding() |
| 2653 | { |
| 2654 | #ifdef PUGIXML_WCHAR_MODE |
| 2655 | return get_wchar_encoding(); |
| 2656 | #else |
| 2657 | return encoding_utf8; |
| 2658 | #endif |
| 2659 | } |
| 2660 | |
| 2661 | PUGI__FN xml_encoding get_write_encoding(xml_encoding encoding) |
| 2662 | { |
nothing calls this directly
no outgoing calls
no test coverage detected