00001 /* adler32.h -- compute the Adler-32 checksum of a data stream 00002 * Copyright (C) 1995-1998 Mark Adler 00003 * For conditions of distribution and use, see copyright notice in zlib.h 00004 */ 00005 00006 #ifndef AWS_ADLER 00007 00008 unsigned long aws_adler32(unsigned long adler, const unsigned char *buf, unsigned int len); 00009 00010 #endif // AWS_ADLER