crc32.h 742 B

123456789101112131415161718192021
  1. /*
  2. ---------------------------------------------------------------------------
  3. Copyright (c) 2003, Dominik Reichl <dominik.reichl@t-online.de>, Germany.
  4. All rights reserved.
  5. Distributed under the terms of the GNU General Public License v2.
  6. This software is provided 'as is' with no explicit or implied warranties
  7. in respect of its properties, including, but not limited to, correctness
  8. and/or fitness for purpose.
  9. ---------------------------------------------------------------------------
  10. */
  11. #ifndef ___CRC32_H___
  12. #define ___CRC32_H___
  13. void crc32Init(unsigned long *pCrc32);
  14. void crc32Update(unsigned long *pCrc32, unsigned char *pData, unsigned long uSize);
  15. void crc32Finish(unsigned long *pCrc32);
  16. #endif /* ___CRC32_H___ */