diff options
| author | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
| commit | a67dc94484cf9869793fc1861914b800a6559a74 (patch) | |
| tree | 68e9a016380776a6a6d90159722d1514756a4929 /src/hash/crc.h | |
| parent | 795284d3b173473003129882739f371f37059adb (diff) | |
fix indentation!!!
Diffstat (limited to 'src/hash/crc.h')
| -rw-r--r-- | src/hash/crc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hash/crc.h b/src/hash/crc.h index b3fdbf9..233debd 100644 --- a/src/hash/crc.h +++ b/src/hash/crc.h @@ -2,15 +2,15 @@ #include <stdint.h> struct crc32_hash { - uint32_t crc; + uint32_t crc; }; struct crc16_hash { - uint16_t crc; + uint16_t crc; }; struct crc8_hash { - uint8_t crc; + uint8_t crc; }; uint8_t crc8(uint8_t*, size_t len); |
