]> mj.ucw.cz Git - libucw.git/commitdiff
added missing _UCW prefix to headers guards
authorPavel Charvat <pavel.charvat@netcentrum.cz>
Tue, 5 Sep 2006 10:45:20 +0000 (12:45 +0200)
committerPavel Charvat <pavel.charvat@netcentrum.cz>
Tue, 5 Sep 2006 10:45:20 +0000 (12:45 +0200)
lib/ff-utf8.h
lib/md5.h
lib/unicode.h

index 83b6b7613f6a384fb294ef2c3569fe72db647466..31510ff4411b5aceb85c9c921f20ff9d8f086474 100644 (file)
@@ -8,8 +8,8 @@
  *     of the GNU Lesser General Public License.
  */
 
-#ifndef _FF_UTF8_H
-#define _FF_UTF8_H
+#ifndef _UCW_FF_UTF8_H
+#define _UCW_FF_UTF8_H
 
 #include "lib/fastbuf.h"
 #include "lib/unicode.h"
index e70909589f67673c9a5328e4479fc772ceeecbde..be51a52525eeb6131a43c680fad0beb0b589e921 100644 (file)
--- a/lib/md5.h
+++ b/lib/md5.h
@@ -4,8 +4,8 @@
  *     This file is in public domain (see lib/md5.c).
  */
 
-#ifndef MD5_H
-#define MD5_H
+#ifndef _UCW_MD5_H
+#define _UCW_MD5_H
 
 typedef u32 uint32;
 
@@ -21,4 +21,4 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf,
 void MD5Final(unsigned char digest[16], struct MD5Context *context);
 void MD5Transform(uint32 buf[4], uint32 const in[16]);
 
-#endif /* !MD5_H */
+#endif /* !_UCW_MD5_H */
index 4fd9575ffde70db8350a6de93d1876428f676f06..79934540c586adefee3459b7dc1e1d24a44ff9d8 100644 (file)
@@ -8,8 +8,8 @@
  *     of the GNU Lesser General Public License.
  */
 
-#ifndef _UNICODE_H
-#define _UNICODE_H
+#ifndef _UCW_UNICODE_H
+#define _UCW_UNICODE_H
 
 /* Macros for handling UTF-8 */