├── .gitignore ├── COPYING ├── LICENSE ├── Makefile ├── README.md ├── src ├── CMakeLists.txt ├── config.h.in ├── mocks.c ├── mocks.h ├── polyfill.c ├── polyfill.h ├── stderred.c └── test.c └── usr ├── .gitignore ├── bin └── stderred └── share ├── doc └── stderred │ └── .gitignore └── stderred └── stderred.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | See README. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/README.md -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/mocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/mocks.c -------------------------------------------------------------------------------- /src/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/mocks.h -------------------------------------------------------------------------------- /src/polyfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/polyfill.c -------------------------------------------------------------------------------- /src/polyfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/polyfill.h -------------------------------------------------------------------------------- /src/stderred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/stderred.c -------------------------------------------------------------------------------- /src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/src/test.c -------------------------------------------------------------------------------- /usr/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/* 2 | -------------------------------------------------------------------------------- /usr/bin/stderred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/usr/bin/stderred -------------------------------------------------------------------------------- /usr/share/doc/stderred/.gitignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /usr/share/stderred/stderred.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku1ik/stderred/HEAD/usr/share/stderred/stderred.sh --------------------------------------------------------------------------------