├── .gitignore ├── Makefile ├── README.md ├── inject.c └── testProgram.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/CRuntimeFunctionHooker/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/CRuntimeFunctionHooker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/CRuntimeFunctionHooker/HEAD/README.md -------------------------------------------------------------------------------- /inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/CRuntimeFunctionHooker/HEAD/inject.c -------------------------------------------------------------------------------- /testProgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasfinch/CRuntimeFunctionHooker/HEAD/testProgram.c --------------------------------------------------------------------------------