diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-11-03 13:47:24 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2010-11-03 13:47:24 +0100 |
commit | 0340e79597685b2ffc177283f50e450d2949cff5 (patch) | |
tree | d65581dd553bbe736233fd89e0bfadc504388721 /mkubootenv/crc32.h | |
parent | 9b67de66810c5bff9d69b69d01f96d4d3be12bca (diff) | |
parent | c6e370e4a3a1c574e50240fecefe05965464aefd (diff) |
Merge mkubootenv tree into own subdirectory
Diffstat (limited to 'mkubootenv/crc32.h')
-rw-r--r-- | mkubootenv/crc32.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mkubootenv/crc32.h b/mkubootenv/crc32.h new file mode 100644 index 0000000..6ea89b0 --- /dev/null +++ b/mkubootenv/crc32.h @@ -0,0 +1,8 @@ +#ifndef _CRC32_H_ +#define _CRC32_H_ + +#include <stdint.h> + +extern uint32_t crc32(uint32_t crc, const uint8_t *buf, size_t len); + +#endif /* _CRC32_H_ */ |