summaryrefslogtreecommitdiff
path: root/tools/pbl_crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pbl_crc32.h')
-rw-r--r--tools/pbl_crc32.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/pbl_crc32.h b/tools/pbl_crc32.h
new file mode 100644
index 0000000000..4ab55ee768
--- /dev/null
+++ b/tools/pbl_crc32.h
@@ -0,0 +1,13 @@
+/*
+ * Copyright 2012 Freescale Semiconductor, Inc.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef PBLCRC32_H
+#define PBLCRC32_H
+
+#include <stdint.h>
+uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len);
+
+#endif