mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-12 23:44:11 +00:00
69420a703a
Huge shoutout to dhewm3 and RBDOOM-3-BFG for doing 99% of this work before us!
17 lines
428 B
C
17 lines
428 B
C
#ifndef __MD4_H__
|
|
#define __MD4_H__
|
|
|
|
/*
|
|
===============================================================================
|
|
|
|
Calculates a checksum for a block of data
|
|
using the MD4 message-digest algorithm.
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
// RB: 64 bit fix, changed long to int
|
|
unsigned int MD4_BlockChecksum( const void *data, int length );
|
|
// RB end
|
|
|
|
#endif /* !__MD4_H__ */
|