]>
Commit | Line | Data |
---|---|---|
f1584bb0 JW |
1 | /* crc32.h |
2 | * CRC32 routine declarations | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
74032dae JW |
11 | #ifndef _CRC32_H |
12 | #define _CRC32_H | |
13 | ||
14 | #include <stdint.h> | |
15 | ||
f2da68c5 | 16 | extern uint32_t crc32(unsigned char *buf, int len, uint32_t crc0); |
74032dae JW |
17 | extern void crc32_init(); |
18 | ||
19 | #endif | |
20 |