| 546 | #endif |
| 547 | |
| 548 | void use_utf8() { |
| 549 | #if defined(_WIN32) |
| 550 | // you man need to set console output to utf-8 on windows. call |
| 551 | // CHCP 65001 |
| 552 | // from the command line. make sure appropriate font is selected |
| 553 | SetConsoleOutputCP(CP_UTF8); |
| 554 | #endif |
| 555 | } |