2023-05-16

소스코드 붙이기 연습

 소스코드 붙이기 연습

1
2
3
4
5
6
7
EchoServer::~EchoServer() {
    m_running = false;
    close(m_server_socket);
    for (auto& thread : m_client_threads) {
        thread.join();
    }
}

How to Convert EUC-KR Source Code to UTF-8

How to Convert EUC-KR Source Code to UTF-8 I found old STM32 firmware code. The files were in EUC-KR encoding. This is an old Korean text f...