├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── src ├── utf8_iterator.cpp ├── utf8_iterator.hpp ├── utf8_string.cpp └── utf8_string.hpp └── test ├── lipsum.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/README.md -------------------------------------------------------------------------------- /src/utf8_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/src/utf8_iterator.cpp -------------------------------------------------------------------------------- /src/utf8_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/src/utf8_iterator.hpp -------------------------------------------------------------------------------- /src/utf8_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/src/utf8_string.cpp -------------------------------------------------------------------------------- /src/utf8_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/src/utf8_string.hpp -------------------------------------------------------------------------------- /test/lipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/test/lipsum.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gumichan01/utf8_string/HEAD/test/main.cpp --------------------------------------------------------------------------------