Andreas Krennmair:
[apps/madmutt.git] / crypthash.h
1 #ifndef _CRYPTHASH_H
2 # define _CRYPTHASH_H
3
4 # include "config.h"
5
6
7 # include <sys/types.h>
8 # if HAVE_INTTYPES_H
9 #  include <inttypes.h>
10 # else
11 #  if HAVE_STDINT_H
12 #   include <stdint.h>
13 #  endif
14 # endif
15
16 /* POINTER defines a generic pointer type */
17 typedef unsigned char *POINTER;
18
19 # ifndef HAVE_UINT32_T
20 #  if SIZEOF_INT == 4
21 typedef unsigned int uint32_t;
22 #  elif SIZEOF_LONG == 4
23 typedef unsigned long uint32_t;
24 #  endif
25 # endif
26
27 #endif