comparison md5.h @ 27:98951f8ec89c src

cosmetics: Sync indentation and similar changes from libdvdread 0.9.5.
author diego
date Thu, 25 Sep 2008 09:17:42 +0000
parents 0d82d0f30c98
children 8796d6c029b1
comparison
equal deleted inserted replaced
26:0d82d0f30c98 27:98951f8ec89c
52 # ifndef UINT_MAX 52 # ifndef UINT_MAX
53 # define UINT_MAX UINT_MAX_32_BITS 53 # define UINT_MAX UINT_MAX_32_BITS
54 # endif 54 # endif
55 55
56 # if UINT_MAX == UINT_MAX_32_BITS 56 # if UINT_MAX == UINT_MAX_32_BITS
57 typedef unsigned int md5_uint32; 57 typedef unsigned int md5_uint32;
58 # else 58 # else
59 # if USHRT_MAX == UINT_MAX_32_BITS 59 # if USHRT_MAX == UINT_MAX_32_BITS
60 typedef unsigned short md5_uint32; 60 typedef unsigned short md5_uint32;
61 # else 61 # else
62 # if ULONG_MAX == UINT_MAX_32_BITS 62 # if ULONG_MAX == UINT_MAX_32_BITS
63 typedef unsigned long md5_uint32; 63 typedef unsigned long md5_uint32;
64 # else 64 # else
65 /* The following line is intended to evoke an error. 65 /* The following line is intended to evoke an error.
66 Using #error is not portable enough. */ 66 Using #error is not portable enough. */
67 "Cannot determine unsigned 32-bit data type." 67 "Cannot determine unsigned 32-bit data type."
68 # endif 68 # endif
69 # endif 69 # endif
70 # endif 70 # endif
71 #endif 71 #endif
72 72