├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── common.hpp ├── fuzzywuzzy.hpp ├── levenshtein.h ├── process.hpp ├── string_matcher.hpp ├── utils.hpp └── wrapper.hpp ├── src ├── CMakeLists.txt ├── fuzzywuzzy.cpp ├── levenshtein.c ├── process.cpp ├── string_matcher.cpp ├── utils.cpp └── wrapper.cpp └── test ├── CMakeLists.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .idea/ 3 | cmake-build-debug/ 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/README.md -------------------------------------------------------------------------------- /include/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/common.hpp -------------------------------------------------------------------------------- /include/fuzzywuzzy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/fuzzywuzzy.hpp -------------------------------------------------------------------------------- /include/levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/levenshtein.h -------------------------------------------------------------------------------- /include/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/process.hpp -------------------------------------------------------------------------------- /include/string_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/string_matcher.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /include/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/include/wrapper.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/fuzzywuzzy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/fuzzywuzzy.cpp -------------------------------------------------------------------------------- /src/levenshtein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/levenshtein.c -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/string_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/string_matcher.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/src/wrapper.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmplt/fuzzywuzzy/HEAD/test/main.cpp --------------------------------------------------------------------------------