├── .gitignore ├── .gitmodules ├── ARM64Types.h ├── InspCWrapper.m ├── InspectiveC.h ├── InspectiveC.mm ├── InspectiveCarm32.mm ├── InspectiveCarm64.mm ├── LICENSE.txt ├── Makefile ├── README.md ├── blocks.h ├── blocks.mm ├── control ├── cycript ├── InspectiveC.compiled.cy └── InspectiveC.cy ├── example ├── Example.plist ├── InspCWrapper.m ├── Makefile ├── Tweak.xm ├── control └── theos ├── hashmap.h ├── hashmap.mm ├── logging.h ├── logging.mm └── stable_debs ├── com.dgoldman.inspectivec_1.0.1-1_iphoneos-arm.deb ├── com.golddavid.inspectivec-multithreaded_1.1.0-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.2-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.3-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.4-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.5-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.6-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.7-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.8-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.0.9-1_iphoneos-arm.deb ├── com.golddavid.inspectivec_1.1.0-1_iphoneos-arm.deb └── com.golddavid.inspectivec_1.2.0_iphoneos-arm.deb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/.gitmodules -------------------------------------------------------------------------------- /ARM64Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/ARM64Types.h -------------------------------------------------------------------------------- /InspCWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/InspCWrapper.m -------------------------------------------------------------------------------- /InspectiveC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/InspectiveC.h -------------------------------------------------------------------------------- /InspectiveC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/InspectiveC.mm -------------------------------------------------------------------------------- /InspectiveCarm32.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/InspectiveCarm32.mm -------------------------------------------------------------------------------- /InspectiveCarm64.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/InspectiveCarm64.mm -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/README.md -------------------------------------------------------------------------------- /blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/blocks.h -------------------------------------------------------------------------------- /blocks.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/blocks.mm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/control -------------------------------------------------------------------------------- /cycript/InspectiveC.compiled.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/cycript/InspectiveC.compiled.cy -------------------------------------------------------------------------------- /cycript/InspectiveC.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/cycript/InspectiveC.cy -------------------------------------------------------------------------------- /example/Example.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/example/Example.plist -------------------------------------------------------------------------------- /example/InspCWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/example/InspCWrapper.m -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/example/Tweak.xm -------------------------------------------------------------------------------- /example/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/example/control -------------------------------------------------------------------------------- /example/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/hashmap.h -------------------------------------------------------------------------------- /hashmap.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/hashmap.mm -------------------------------------------------------------------------------- /logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/logging.h -------------------------------------------------------------------------------- /logging.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/logging.mm -------------------------------------------------------------------------------- /stable_debs/com.dgoldman.inspectivec_1.0.1-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.dgoldman.inspectivec_1.0.1-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec-multithreaded_1.1.0-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec-multithreaded_1.1.0-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.2-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.2-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.3-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.3-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.4-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.4-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.5-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.5-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.6-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.6-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.7-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.7-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.8-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.8-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.0.9-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.0.9-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.1.0-1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.1.0-1_iphoneos-arm.deb -------------------------------------------------------------------------------- /stable_debs/com.golddavid.inspectivec_1.2.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidGoldman/InspectiveC/HEAD/stable_debs/com.golddavid.inspectivec_1.2.0_iphoneos-arm.deb --------------------------------------------------------------------------------