# iconvpp **Repository Path**: AniuSoft/iconvpp ## Basic Information - **Project Name**: iconvpp - **Description**: iconvpp: Simple wrapper of iconv for C++ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-02 - **Last Updated**: 2021-03-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README iconvpp: Simple wrapper of iconv for C++ ======================================== About ----- This is a simple wrapper of iconv for C++. Require ------- - libiconv (http://www.gnu.org/s/libiconv/) Install ------- Simply copy 'iconv.hpp' file to your project directory, or install it to your include directory. :: $ ./waf configure $ ./waf --check $ ./waf install Usage ----- :: iconvpp::converter conv("UTF-8", // output encoding "EUC-JP", // input encoding true, // ignore errors (optional, default: fasle) 1024); // buffer size (optional, default: 1024) std::string input = "..."; std::string output; conv.convert(input, output); See 'iconv_test.cpp' for more examples. License ------- This library is distributed under the new BSD license.