| 811 | #endif |
| 812 | |
| 813 | void use_utf8() { |
| 814 | #if defined(_WIN32) |
| 815 | // you man need to set console output to utf-8 on windows. call |
| 816 | // CHCP 65001 |
| 817 | // from the command line. make sure appropriate font is selected |
| 818 | SetConsoleOutputCP(CP_UTF8); |
| 819 | #endif |
| 820 | } |