diff options
author | Rob Landley | 2006-04-10 17:07:15 +0000 |
---|---|---|
committer | Rob Landley | 2006-04-10 17:07:15 +0000 |
commit | c57ec37959390ff2e43faa5e4dd5281b2923ced3 (patch) | |
tree | 8325e7bd6a9a270e931b383d33b5901751dd2a5e /include/libbb.h | |
parent | 998f4493756423877217239d2cc42eb8b83d50b3 (diff) | |
download | busybox-c57ec37959390ff2e43faa5e4dd5281b2923ced3.zip busybox-c57ec37959390ff2e43faa5e4dd5281b2923ced3.tar.gz |
Patch from Rob Sullivan to consolidate crc32 table generation.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 64a235a..edbc582 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -508,6 +508,8 @@ void md5_begin(md5_ctx_t *ctx); void md5_hash(const void *data, size_t length, md5_ctx_t *ctx); void *md5_end(void *resbuf, md5_ctx_t *ctx); +extern uint32_t *bb_crc32_filltable (int endian); + /* busybox.h will include dmalloc later for us, else include it here. */ #if !defined _BB_INTERNAL_H_ && defined DMALLOC #include <dmalloc.h> |