├── README.md ├── code ├── ex1 ├── ex1.c ├── ex2 ├── ex2.c ├── ex3 ├── ex3.c ├── ex4 ├── ex4.c ├── ex5 ├── ex5.c ├── solution1.c ├── solution1.dylib ├── solution2.c ├── solution2.dylib ├── solution3.c ├── solution3.dylib ├── solution4.c ├── solution4.dylib ├── solution5.c └── solution5.dylib └── symbol interposing.md /README.md: -------------------------------------------------------------------------------- 1 | symbol interposing.md -------------------------------------------------------------------------------- /code/ex1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex1 -------------------------------------------------------------------------------- /code/ex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex1.c -------------------------------------------------------------------------------- /code/ex2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex2 -------------------------------------------------------------------------------- /code/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex2.c -------------------------------------------------------------------------------- /code/ex3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex3 -------------------------------------------------------------------------------- /code/ex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex3.c -------------------------------------------------------------------------------- /code/ex4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex4 -------------------------------------------------------------------------------- /code/ex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex4.c -------------------------------------------------------------------------------- /code/ex5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex5 -------------------------------------------------------------------------------- /code/ex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/ex5.c -------------------------------------------------------------------------------- /code/solution1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution1.c -------------------------------------------------------------------------------- /code/solution1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution1.dylib -------------------------------------------------------------------------------- /code/solution2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution2.c -------------------------------------------------------------------------------- /code/solution2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution2.dylib -------------------------------------------------------------------------------- /code/solution3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution3.c -------------------------------------------------------------------------------- /code/solution3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution3.dylib -------------------------------------------------------------------------------- /code/solution4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution4.c -------------------------------------------------------------------------------- /code/solution4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution4.dylib -------------------------------------------------------------------------------- /code/solution5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution5.c -------------------------------------------------------------------------------- /code/solution5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/code/solution5.dylib -------------------------------------------------------------------------------- /symbol interposing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DerekSelander/symbol-interposing/HEAD/symbol interposing.md --------------------------------------------------------------------------------