├── .github └── workflows │ └── c-cpp.yml ├── .travis.yml ├── LICENSE ├── README.md ├── test ├── makefile └── test.c ├── xprintf.c └── xprintf.h /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/README.md -------------------------------------------------------------------------------- /test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/test/makefile -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/test/test.c -------------------------------------------------------------------------------- /xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/xprintf.c -------------------------------------------------------------------------------- /xprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafagafe/xprintf/HEAD/xprintf.h --------------------------------------------------------------------------------