Replaced single line comment w/ block

This commit is contained in:
Gitea 2020-12-01 20:32:46 -06:00
parent 75632e656a
commit d392abebc7

View file

@ -93,7 +93,7 @@ int main(int argc, char ** argv) {
return 0; return 0;
} }
//Based off CRC-32 on the Wikipedia article for CRC /* Based off the CRC-32 psuedocode implementation on the Wikipedia article for CRC */
unsigned int crc32(FILE * in_file) { unsigned int crc32(FILE * in_file) {
unsigned int crc = 0xffffffff; unsigned int crc = 0xffffffff;
int nLookupIndex; int nLookupIndex;