2018-04-24 19:56:45 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Workaround GmbH.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* @brief CRC 32 computation function
|
|
|
|
*/
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_CRC32_H_
|
|
|
|
#define ZEPHYR_INCLUDE_CRC32_H_
|
2018-04-24 19:56:45 +08:00
|
|
|
|
2018-12-02 22:51:26 +08:00
|
|
|
#include <crc.h>
|
2018-04-24 19:56:45 +08:00
|
|
|
|
|
|
|
#endif
|