├── .gitignore ├── CMakeLists.txt ├── README.md ├── example.cpp └── wtf └── wtf.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | release 3 | debug 4 | build 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favreau/WTF/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favreau/WTF/HEAD/README.md -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favreau/WTF/HEAD/example.cpp -------------------------------------------------------------------------------- /wtf/wtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favreau/WTF/HEAD/wtf/wtf.h --------------------------------------------------------------------------------