masqmail-0.2
diff src/md5/md5.h @ 10:26e34ae9a3e3
changed indention and line wrapping to a more consistent style
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:23:10 +0100 |
parents | 08114f7dcc23 |
children | 52c82d755215 |
line diff
1.1 --- a/src/md5/md5.h Mon Oct 27 16:21:27 2008 +0100 1.2 +++ b/src/md5/md5.h Mon Oct 27 16:23:10 2008 +0100 1.3 @@ -25,12 +25,11 @@ 1.4 1.5 /* MD5 context. */ 1.6 typedef struct { 1.7 - UINT4 state[4]; /* state (ABCD) */ 1.8 - UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 1.9 - unsigned char buffer[64]; /* input buffer */ 1.10 + UINT4 state[4]; /* state (ABCD) */ 1.11 + UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ 1.12 + unsigned char buffer[64]; /* input buffer */ 1.13 } MD5_CTX; 1.14 1.15 -void MD5Init PROTO_LIST ((MD5_CTX *)); 1.16 -void MD5Update PROTO_LIST 1.17 - ((MD5_CTX *, unsigned char *, unsigned int)); 1.18 -void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *)); 1.19 +void MD5Init PROTO_LIST((MD5_CTX *)); 1.20 +void MD5Update PROTO_LIST((MD5_CTX *, unsigned char *, unsigned int)); 1.21 +void MD5Final PROTO_LIST((unsigned char[16], MD5_CTX *));