89 lines
2.5 KiB
C
89 lines
2.5 KiB
C
|
///\file
|
||
|
|
||
|
/******************************************************************************
|
||
|
The MIT License(MIT)
|
||
|
|
||
|
Embedded Template Library.
|
||
|
https://github.com/ETLCPP/etl
|
||
|
https://www.etlcpp.com
|
||
|
|
||
|
Copyright(c) 2021 John Wellbelove
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
of this software and associated documentation files(the "Software"), to deal
|
||
|
in the Software without restriction, including without limitation the rights
|
||
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
||
|
copies of the Software, and to permit persons to whom the Software is
|
||
|
furnished to do so, subject to the following conditions :
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in all
|
||
|
copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
SOFTWARE.
|
||
|
******************************************************************************/
|
||
|
|
||
|
#ifndef ETL_CRC_INCLUDED
|
||
|
#define ETL_CRC_INCLUDED
|
||
|
|
||
|
#include "crc1.h"
|
||
|
|
||
|
#include "crc8_ccitt.h"
|
||
|
#include "crc8_cdma2000.h"
|
||
|
#include "crc8_darc.h"
|
||
|
#include "crc8_dvbs2.h"
|
||
|
#include "crc8_ebu.h"
|
||
|
#include "crc8_icode.h"
|
||
|
#include "crc8_itu.h"
|
||
|
#include "crc8_j1850_zero.h"
|
||
|
#include "crc8_j1850.h"
|
||
|
#include "crc8_maxim.h"
|
||
|
#include "crc8_rohc.h"
|
||
|
#include "crc8_wcdma.h"
|
||
|
|
||
|
#include "crc16.h"
|
||
|
#include "crc16_a.h"
|
||
|
#include "crc16_arc.h"
|
||
|
#include "crc16_aug_ccitt.h"
|
||
|
#include "crc16_buypass.h"
|
||
|
#include "crc16_ccitt.h"
|
||
|
#include "crc16_cdma2000.h"
|
||
|
#include "crc16_dds110.h"
|
||
|
#include "crc16_dectr.h"
|
||
|
#include "crc16_dectx.h"
|
||
|
#include "crc16_dnp.h"
|
||
|
#include "crc16_en13757.h"
|
||
|
#include "crc16_genibus.h"
|
||
|
#include "crc16_kermit.h"
|
||
|
#include "crc16_maxim.h"
|
||
|
#include "crc16_mcrf4xx.h"
|
||
|
#include "crc16_modbus.h"
|
||
|
#include "crc16_profibus.h"
|
||
|
#include "crc16_riello.h"
|
||
|
#include "crc16_t10dif.h"
|
||
|
#include "crc16_teledisk.h"
|
||
|
#include "crc16_tms37157.h"
|
||
|
#include "crc16_usb.h"
|
||
|
#include "crc16_x25.h"
|
||
|
#include "crc16_xmodem.h"
|
||
|
#include "crc16_m17.h"
|
||
|
|
||
|
#include "crc32.h"
|
||
|
#include "crc32_bzip2.h"
|
||
|
#include "crc32_c.h"
|
||
|
#include "crc32_d.h"
|
||
|
#include "crc32_jamcrc.h"
|
||
|
#include "crc32_mpeg2.h"
|
||
|
#include "crc32_posix.h"
|
||
|
#include "crc32_q.h"
|
||
|
#include "crc32_xfer.h"
|
||
|
|
||
|
#include "crc64_ecma.h"
|
||
|
|
||
|
#endif
|