├── CMakeLists.txt ├── LICENSE ├── hooker.c ├── hooker.h ├── hooker.hpp └── tests ├── CMakeLists.txt ├── catch.hpp └── test_hooks.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/LICENSE -------------------------------------------------------------------------------- /hooker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/hooker.c -------------------------------------------------------------------------------- /hooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/hooker.h -------------------------------------------------------------------------------- /hooker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/hooker.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/test_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokups/hooker/HEAD/tests/test_hooks.cpp --------------------------------------------------------------------------------