├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── StringConvert.cpp └── StringConvert.hpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/README.md -------------------------------------------------------------------------------- /StringConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/StringConvert.cpp -------------------------------------------------------------------------------- /StringConvert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preco21/StringConvert/HEAD/StringConvert.hpp --------------------------------------------------------------------------------