├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── bmp.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | test.bmp 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/bmp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/bmp/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/bmp/HEAD/UNLICENSE -------------------------------------------------------------------------------- /bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/bmp/HEAD/bmp.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skeeto/bmp/HEAD/test.c --------------------------------------------------------------------------------