├── .buildconfig ├── .gitignore ├── Makefile ├── README.md └── crc32.c /.buildconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dch82/crc32/HEAD/.buildconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | crc32 2 | *.kate-swp 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dch82/crc32/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dch82/crc32/HEAD/README.md -------------------------------------------------------------------------------- /crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dch82/crc32/HEAD/crc32.c --------------------------------------------------------------------------------