DOSBox-X
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Functions
src/gui/zipcrc.c File Reference
#include "zipcrc.h"
#include <stdlib.h>
#include <stdint.h>

Go to the source code of this file.

Functions

zipcrc_t zipcrc_update (zipcrc_t crc, const void *data, size_t data_len)

Detailed Description

Functions and types for CRC checks.

Generated on Sat Jul 29 13:31:13 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

Definition in file zipcrc.c.


Function Documentation

zipcrc_t zipcrc_update ( zipcrc_t  crc,
const void *  data,
size_t  data_len 
)

Update the crc value with new data.

Parameters:
crcThe current crc value.
dataPointer to a buffer of data_len bytes.
data_lenNumber of bytes in the data buffer.
Returns:
The updated crc value.

Definition at line 66 of file zipcrc.c.