2 * For license terms, see the file COPYING in this directory.
4 * md5global.h Global declarations for MD5 module used by fetchmail
10 /* GLOBAL.H - RSAREF types and constants
13 /* force prototypes on, we need ANSI C anyway */
18 /* POINTER defines a generic pointer type */
19 typedef unsigned char *POINTER
;
21 /* UINT2 defines a two byte word */
22 typedef unsigned short int UINT2
;
24 /* UINT4 defines a four byte word */
26 typedef unsigned int UINT4
;
28 typedef unsigned long int UINT4
;
31 /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
32 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
33 returns an empty list.
36 #define PROTO_LIST(list) list
38 #define PROTO_LIST(list) ()
41 #endif /* MD5GLOBAL_H__ */