X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=crypthash.h;fp=crypthash.h;h=a2545b8e9525109c00b0280a51cd3a23872d2f00;hp=0000000000000000000000000000000000000000;hb=3d937534e7b1ee723f86594b5e4c64c95158a933;hpb=d7c69d8f0180e24b9ee48088d08090df7b4e27c2 diff --git a/crypthash.h b/crypthash.h new file mode 100644 index 0000000..a2545b8 --- /dev/null +++ b/crypthash.h @@ -0,0 +1,27 @@ +#ifndef _CRYPTHASH_H +# define _CRYPTHASH_H + +# include "config.h" + + +# include +# if HAVE_INTTYPES_H +# include +# else +# if HAVE_STDINT_H +# include +# endif +# endif + +/* POINTER defines a generic pointer type */ +typedef unsigned char *POINTER; + +# ifndef HAVE_UINT32_T +# if SIZEOF_INT == 4 +typedef unsigned int uint32_t; +# elif SIZEOF_LONG == 4 +typedef unsigned long uint32_t; +# endif +# endif + +#endif