├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── qoi.h ├── qoibench.c ├── qoiconv.c └── qoifuzz.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/README.md -------------------------------------------------------------------------------- /qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/qoi.h -------------------------------------------------------------------------------- /qoibench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/qoibench.c -------------------------------------------------------------------------------- /qoiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/qoiconv.c -------------------------------------------------------------------------------- /qoifuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/qoi/HEAD/qoifuzz.c --------------------------------------------------------------------------------