comparison md5.h @ 23:ac07d427fbc6 src

Use consistent multiple inclusion guards everywhere: Combine them from a LIBDVDREAD_ prefix and the filename.
author diego
date Sun, 14 Sep 2008 20:37:38 +0000
parents 4aa618ae094f
children 0d82d0f30c98
comparison
equal deleted inserted replaced
22:447c5319a522 23:ac07d427fbc6
16 16
17 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software Foundation, 18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ 19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
20 20
21 #ifndef _MD5_H 21 #ifndef LIBDVDREAD_MD5_H
22 #define _MD5_H 1 22 #define LIBDVDREAD_MD5_H
23 23
24 #include <stdio.h> 24 #include <stdio.h>
25 25
26 #if defined HAVE_LIMITS_H || _LIBC 26 #if defined HAVE_LIMITS_H || _LIBC
27 # include <limits.h> 27 # include <limits.h>
156 } 156 }
157 #else 157 #else
158 # define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) ) 158 # define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
159 #endif 159 #endif
160 160
161 #endif 161 #endif /* LIBDVDREAD_MD5_H */