From 56a73bb0ba40fc487b140837a57aab96783e15dc Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 13 Apr 2012 02:49:53 -0700 Subject: [PATCH] readme --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7618827 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +crc32 +----- + +A [crc32][crc] calculator written in C and licensed under GPLv3. + +[crc]: http://en.wikipedia.org/wiki/Cyclic_redundancy_check "cycle redundancy check on wikipedia" + +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.