2006-10-30 05:32:33 +00:00
|
|
|
/* -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 8; -*- */
|
|
|
|
|
|
|
|
#ifndef BURN__CRC_H
|
|
|
|
#define BURN__CRC_H
|
|
|
|
|
2010-02-14 17:17:04 +00:00
|
|
|
|
|
|
|
#ifdef Xorriso_standalonE
|
2010-02-15 12:57:38 +00:00
|
|
|
/* Source module crc.c of yet unclear ancestry is excluded from GNU xorriso */
|
2010-02-14 17:17:04 +00:00
|
|
|
#ifndef Libburn_no_crc_C
|
|
|
|
#define Libburn_no_crc_C 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Libburn_no_crc_C
|
|
|
|
|
2006-10-30 05:32:33 +00:00
|
|
|
unsigned short crc_ccitt(unsigned char *, int len);
|
|
|
|
unsigned int crc_32(unsigned char *, int len);
|
|
|
|
|
2010-02-14 17:17:04 +00:00
|
|
|
#endif /* Libburn_no_crc_C */
|
|
|
|
|
|
|
|
|
2006-10-30 05:32:33 +00:00
|
|
|
#endif /* BURN__CRC_H */
|