small crc32 calculator
Go to file
Connor Olding 56a73bb0ba readme 2012-04-13 02:49:53 -07:00
README.md readme 2012-04-13 02:49:53 -07:00
args.h init 2012-04-13 02:43:39 -07:00
crc32.h init 2012-04-13 02:43:39 -07:00
main.c init 2012-04-13 02:43:39 -07:00

README.md

crc32

A crc32 calculator written in C and licensed under GPLv3.

Compilation

gcc -ansi -pedantic -Wall -Werror -O3 main.c -o crc32

or for Visual Studio users

cl /O2 /Ot /W2 /WX /Fecrc32 main.c

Help

Notes

  • Defaults to comply to IEEE-802.3 specs.
  • Big endian calculations may not be accurate. I'll look into this.