pbl_crc32.h 231 B

12345678910111213
  1. /*
  2. * Copyright 2012 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef PBLCRC32_H
  7. #define PBLCRC32_H
  8. #include <stdint.h>
  9. uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len);
  10. #endif