Initial Commit

This commit is contained in:
2023-01-02 23:35:53 -05:00
parent a302b49950
commit ceee973ad7
150 changed files with 12229 additions and 89 deletions

28
util/crc.c Normal file
View File

@ -0,0 +1,28 @@
#include <stddef.h>
#include <stdint.h>
#include "util/crc.h"
uint32_t crc32(const void *src, size_t nbytes, uint32_t in)
{
const uint8_t *bytes;
uint32_t crc;
size_t i;
bytes = src;
crc = ~in;
for (i = 0 ; i < nbytes * 8 ; i++) {
if (i % 8 == 0) {
crc ^= *bytes++;
}
if (crc & 1) {
crc = (crc >> 1) ^ 0xEDB88320;
} else {
crc = (crc >> 1);
}
}
return ~crc;
}