├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── tests ├── example.c └── test.c ├── xf8.c └── xf8.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/UNLICENSE -------------------------------------------------------------------------------- /tests/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/tests/example.c -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/tests/test.c -------------------------------------------------------------------------------- /xf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/xf8.c -------------------------------------------------------------------------------- /xf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/xf8/HEAD/xf8.h --------------------------------------------------------------------------------