mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
cc1732bc42
- Perform some housekeeping on scalar math function code - Import ARM's Optimized Routines for SIMD string processing - Upgrade to latest Chromium zlib and enable more SIMD optimizations
14 lines
459 B
C
14 lines
459 B
C
#ifndef COSMOPOLITAN_LIBC_NEXGEN32E_CRC32_H_
|
|
#define COSMOPOLITAN_LIBC_NEXGEN32E_CRC32_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const uint32_t kCrc32cTab[256];
|
|
|
|
void crc32init(uint32_t[hasatleast 256], uint32_t);
|
|
uint32_t crc32a(uint32_t, const void *, size_t);
|
|
uint32_t crc32c(uint32_t, const void *, size_t);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_NEXGEN32E_CRC32_H_ */
|