Branch
Hash :
3919ea91
Author :
Thomas de Grivel
Date :
2025-07-07T23:26:29
crc32c with one test
/* ext4fs
* Copyright 2025 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#ifndef CRC32C_H
#define CRC32C_H
#include <stddef.h>
#include <stdint.h>
uint32_t crc32c (uint32_t crc, const void *data, size_t len);
#endif /* CRC32C_H */