summaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
authorXavier Roche <roche@httrack.com>2015-03-15 17:25:40 +0100
committerXavier Roche <roche@httrack.com>2015-03-15 17:25:40 +0100
commit55a69d5467cad60a4f80831d5b8c80417d4cf1ce (patch)
treed50ddd4ee85a6df23e3ea296c3757ac3634927fe /src/md5.h
parentcc494ce3aab54fc6761c4797b1ae4eb891056531 (diff)
Fixed build after coucal has been moved to a submodule
Diffstat (limited to 'src/md5.h')
-rw-r--r--src/md5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/md5.h b/src/md5.h
index 39dc40f..1a31afb 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -17,7 +17,7 @@ typedef unsigned long uint32;
#error undefined: SIZEOF_LONG
#endif
-struct MD5Context {
+typedef struct MD5Context {
union {
unsigned char ui8[64];
uint32 ui32[16];
@@ -25,7 +25,7 @@ struct MD5Context {
uint32 buf[4];
uint32 bits[2];
int doByteReverse;
-};
+} MD5CTX;
void MD5Init(struct MD5Context *context, int brokenEndian);
void MD5Update(struct MD5Context *context, unsigned char const *buf,