├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── path-mapping.c └── test ├── integration-tests.sh ├── test-pathmatching.c ├── testtool-execl.c ├── testtool-fts.c ├── testtool-ftw.c ├── testtool-nftw.c ├── testtool-printenv.c └── testtool-utime.c /.gitignore: -------------------------------------------------------------------------------- 1 | path-mapping*.so 2 | 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/README.md -------------------------------------------------------------------------------- /path-mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/path-mapping.c -------------------------------------------------------------------------------- /test/integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/integration-tests.sh -------------------------------------------------------------------------------- /test/test-pathmatching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/test-pathmatching.c -------------------------------------------------------------------------------- /test/testtool-execl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-execl.c -------------------------------------------------------------------------------- /test/testtool-fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-fts.c -------------------------------------------------------------------------------- /test/testtool-ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-ftw.c -------------------------------------------------------------------------------- /test/testtool-nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-nftw.c -------------------------------------------------------------------------------- /test/testtool-printenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-printenv.c -------------------------------------------------------------------------------- /test/testtool-utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fritzw/ld-preload-open/HEAD/test/testtool-utime.c --------------------------------------------------------------------------------