SkillAgentSearch skills...

Iconvpp

wrapper library of iconv for c++

Install / Use

/learn @unnonouno/Iconvpp
About this skill

Quality Score

0/100

Supported Platforms

Universal

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.

View on GitHub
GitHub Stars63
CategoryDevelopment
Updated9mo ago
Forks19

Languages

C++

Security Score

72/100

Audited on Jun 22, 2025

No findings