From b2f3148f4c3d91c3720f755f77be76e35b3eb867 Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Tue, 5 Sep 2006 12:45:20 +0200 Subject: [PATCH] added missing _UCW prefix to headers guards --- lib/ff-utf8.h | 4 ++-- lib/md5.h | 6 +++--- lib/unicode.h | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ff-utf8.h b/lib/ff-utf8.h index 83b6b761..31510ff4 100644 --- a/lib/ff-utf8.h +++ b/lib/ff-utf8.h @@ -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" diff --git a/lib/md5.h b/lib/md5.h index e7090958..be51a525 100644 --- 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 */ diff --git a/lib/unicode.h b/lib/unicode.h index 4fd9575f..79934540 100644 --- a/lib/unicode.h +++ b/lib/unicode.h @@ -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 */ -- 2.39.2