├── .clang-tidy ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── StrToNum ├── StrToNum.h └── StrToNum.ixx └── test ├── StrToNum.sln ├── StrToNum.vcxproj └── test.cpp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/README.md -------------------------------------------------------------------------------- /StrToNum/StrToNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/StrToNum/StrToNum.h -------------------------------------------------------------------------------- /StrToNum/StrToNum.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/StrToNum/StrToNum.ixx -------------------------------------------------------------------------------- /test/StrToNum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/test/StrToNum.sln -------------------------------------------------------------------------------- /test/StrToNum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/test/StrToNum.vcxproj -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jovibor/StrToNum/HEAD/test/test.cpp --------------------------------------------------------------------------------