kopia lustrzana https://github.com/espressif/esp-idf
13 wiersze
308 B
C++
13 wiersze
308 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "crc32.h"
|
|
#include "esp_rom_crc.h"
|
|
|
|
unsigned int crc32::crc32_le(unsigned int crc, unsigned char const *buf, unsigned int len)
|
|
{
|
|
return ::esp_rom_crc32_le(crc, buf, len);
|
|
}
|