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