uint32_t spt_crc32()

in Sources/crc32iso3309.c [119:122]


uint32_t spt_crc32(const uint8_t *buf, size_t len)
{
    return update_crc(0L, buf, len);
}