22 lines
324 B
C
22 lines
324 B
C
/*
|
|
* Copyright (c) 2018 Workaround GmbH.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @brief CRC 32 computation function
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_CRC32_H_
|
|
#define ZEPHYR_INCLUDE_CRC32_H_
|
|
|
|
#include <crc.h>
|
|
|
|
#warning This include file is deprecated in favor of crc.h. \
|
|
Include crc.h instead.
|
|
|
|
#endif
|