Skip to content

Instantly share code, notes, and snippets.

@NicolasT
Created April 2, 2015 15:19
Show Gist options
  • Save NicolasT/890436bdd12e1bfed35d to your computer and use it in GitHub Desktop.
Save NicolasT/890436bdd12e1bfed35d to your computer and use it in GitHub Desktop.
/* Build using
*
* gcc -shared -o libcrc32.so -O2 crc32.c
*
* Then run using
*
* LD_PRELOAD=./libcrc32.so myprog
*/
unsigned long crc32(unsigned long crc, const unsigned char *buf, unsigned int len) {
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment