From: Karsten Horsmann
[apps/madmutt.git] / crypthash.h
1 /*
2  * Copyright notice from original mutt:
3  * [none]
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #ifndef _CRYPTHASH_H
11 # define _CRYPTHASH_H
12
13
14 # include <sys/types.h>
15 # if HAVE_INTTYPES_H
16 #  include <inttypes.h>
17 # else
18 #  if HAVE_STDINT_H
19 #   include <stdint.h>
20 #  endif
21 # endif
22
23 /* POINTER defines a generic pointer type */
24 typedef unsigned char *POINTER;
25
26 #endif