Search Results

Search: Posts Made By: regnevakrad
20,257
Posted By regnevakrad
/** Reverses bit order. MSB -> LSB and LSB ->...
/** Reverses bit order. MSB -> LSB and LSB -> MSB. */
unsigned int reverse(unsigned int x) {
unsigned int ret = 0;
for (int i=0; i<32; ++i) {
if (x&0x1 != 0) {
ret |=...
20,257
Posted By regnevakrad
I tried doing some trial and error...
I tried doing some trial and error experimentation with my code and
CRC calculation (http://www.zorc.breitbandkatze.de/crc.html)
using a string with 6 characters, reversing or not the results and...
20,257
Posted By regnevakrad
cksum's and zip's CRC32 algorithm
Hello!

For long I used cksum to find file duplicates in linux and darwin.
Now I want to make my own program that does all.
However I can't seem to find the correct algorithm.

zip and cksum...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 10:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy