]> Pileus Git - ~andy/fetchmail/blob - md5global.h
Change type of socket descriptors from FILE * to int. Change SockGets
[~andy/fetchmail] / md5global.h
1 /*
2  * For license terms, see the file COPYING in this directory.
3  *
4  * md5global.h    Global declarations for MD5 module used by fetchmail
5  *
6  */
7
8 #ifndef MD5GLOBAL_H__
9 #define MD5GLOBAL_H__ 
10 /* GLOBAL.H - RSAREF types and constants
11  */
12
13 /* force prototypes on, we need ANSI C anyway */
14 #ifndef PROTOTYPES
15 #define PROTOTYPES 1
16 #endif
17
18 /* POINTER defines a generic pointer type */
19 typedef unsigned char *POINTER;
20
21 /* UINT2 defines a two byte word */
22 typedef unsigned short int UINT2;
23
24 /* UINT4 defines a four byte word */
25 typedef unsigned long int UINT4;
26
27 /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
28 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
29   returns an empty list.
30  */
31 #if PROTOTYPES
32 #define PROTO_LIST(list) list
33 #else
34 #define PROTO_LIST(list) ()
35 #endif
36
37 #endif  /* MD5GLOBAL_H__ */