mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 18:36:09 +08:00
83 lines
2.1 KiB
C
83 lines
2.1 KiB
C
/**
|
|
* \file zipcrc.h
|
|
* Functions and types for CRC checks.
|
|
*
|
|
* Generated on Sat Jul 29 13:31:06 2017,
|
|
* by pycrc v0.9, https://pycrc.org
|
|
* using the configuration:
|
|
* Width = 32
|
|
* Poly = 0x04c11db7
|
|
* Xor_In = 0xffffffff
|
|
* ReflectIn = True
|
|
* Xor_Out = 0xffffffff
|
|
* ReflectOut = True
|
|
* Algorithm = table-driven
|
|
*****************************************************************************/
|
|
#ifndef __ZIPCRC_H__
|
|
#define __ZIPCRC_H__
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* The definition of the used algorithm.
|
|
*
|
|
* This is not used anywhere in the generated code, but it may be used by the
|
|
* application code to call algorithm-specific code, is desired.
|
|
*****************************************************************************/
|
|
#define CRC_ALGO_TABLE_DRIVEN 1
|
|
|
|
|
|
/**
|
|
* The type of the CRC values.
|
|
*
|
|
* This type must be big enough to contain at least 32 bits.
|
|
*****************************************************************************/
|
|
typedef uint_fast32_t zipcrc_t;
|
|
|
|
|
|
/**
|
|
* Calculate the initial crc value.
|
|
*
|
|
* \return The initial crc value.
|
|
*****************************************************************************/
|
|
static inline zipcrc_t zipcrc_init(void)
|
|
{
|
|
return 0xffffffff;
|
|
}
|
|
|
|
|
|
/**
|
|
* Update the crc value with new data.
|
|
*
|
|
* \param crc The current crc value.
|
|
* \param data Pointer to a buffer of \a data_len bytes.
|
|
* \param data_len Number of bytes in the \a data buffer.
|
|
* \return The updated crc value.
|
|
*****************************************************************************/
|
|
zipcrc_t zipcrc_update(zipcrc_t crc, const void *data, size_t data_len);
|
|
|
|
|
|
/**
|
|
* Calculate the final crc value.
|
|
*
|
|
* \param crc The current crc value.
|
|
* \return The final crc value.
|
|
*****************************************************************************/
|
|
static inline zipcrc_t zipcrc_finalize(zipcrc_t crc)
|
|
{
|
|
return crc ^ 0xffffffff;
|
|
}
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* closing brace for extern "C" */
|
|
#endif
|
|
|
|
#endif /* __ZIPCRC_H__ */
|