├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── test ├── helpers.h ├── munit.c ├── munit.h └── test.c ├── tiny-override.c ├── tiny.c └── tiny.h /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/README.md -------------------------------------------------------------------------------- /test/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/test/helpers.h -------------------------------------------------------------------------------- /test/munit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/test/munit.c -------------------------------------------------------------------------------- /test/munit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/test/munit.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/test/test.c -------------------------------------------------------------------------------- /tiny-override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/tiny-override.c -------------------------------------------------------------------------------- /tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/tiny.c -------------------------------------------------------------------------------- /tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsmedeiros/tiny/HEAD/tiny.h --------------------------------------------------------------------------------