├── .gitignore ├── README.md ├── bin ├── UTF-8-demo.txt ├── big.txt ├── quickbrown.txt └── utf8_invalid.txt ├── cutf.cpp ├── cutf.h ├── license.txt ├── test.cpp ├── test2.cpp └── vsproj ├── cutf.sln ├── cutf_shared.vcxitems ├── test_cutf.vcxproj ├── test_cutf.vcxproj.filters ├── test_cutf.vcxproj.user └── test_cutf_linux.vcxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/README.md -------------------------------------------------------------------------------- /bin/UTF-8-demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/bin/UTF-8-demo.txt -------------------------------------------------------------------------------- /bin/big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/bin/big.txt -------------------------------------------------------------------------------- /bin/quickbrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/bin/quickbrown.txt -------------------------------------------------------------------------------- /bin/utf8_invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/bin/utf8_invalid.txt -------------------------------------------------------------------------------- /cutf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/cutf.cpp -------------------------------------------------------------------------------- /cutf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/cutf.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/license.txt -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/test.cpp -------------------------------------------------------------------------------- /test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/test2.cpp -------------------------------------------------------------------------------- /vsproj/cutf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/cutf.sln -------------------------------------------------------------------------------- /vsproj/cutf_shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/cutf_shared.vcxitems -------------------------------------------------------------------------------- /vsproj/test_cutf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/test_cutf.vcxproj -------------------------------------------------------------------------------- /vsproj/test_cutf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/test_cutf.vcxproj.filters -------------------------------------------------------------------------------- /vsproj/test_cutf.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/test_cutf.vcxproj.user -------------------------------------------------------------------------------- /vsproj/test_cutf_linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tapika/cutf/HEAD/vsproj/test_cutf_linux.vcxproj --------------------------------------------------------------------------------