├── .gitignore ├── LICENSE ├── README.md ├── RuntimeWrapping.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── RuntimeWrapping.xccheckout ├── RuntimeWrapping └── main.c └── WrappedLibc └── printf_wrapped.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/README.md -------------------------------------------------------------------------------- /RuntimeWrapping.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/RuntimeWrapping.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RuntimeWrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/RuntimeWrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RuntimeWrapping.xcodeproj/project.xcworkspace/xcshareddata/RuntimeWrapping.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/RuntimeWrapping.xcodeproj/project.xcworkspace/xcshareddata/RuntimeWrapping.xccheckout -------------------------------------------------------------------------------- /RuntimeWrapping/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/RuntimeWrapping/main.c -------------------------------------------------------------------------------- /WrappedLibc/printf_wrapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylesluder/RuntimeWrapping/HEAD/WrappedLibc/printf_wrapped.c --------------------------------------------------------------------------------