bitops.h \
conf.h getopt.h ipaccess.h \
profile.h \
- fastbuf.h lfs.h ff-unicode.h ff-binary.h \
+ fastbuf.h lfs.h ff-unicode.h ff-utf8.h ff-binary.h \
chartype.h unicode.h stkstring.h \
wildmatch.h patmatch.h \
db.h \
/*
- * UCW Library: Reading and writing of UTF-8 on Fastbuf Streams
+ * UCW Library: Reading and writing of UTF-8 and UTF-16 on Fastbuf Streams
*
* (c) 2001--2004 Martin Mares <mj@ucw.cz>
* (c) 2004 Robert Spalek <robert@ucw.cz>
+ * (c) 2007--2008 Pavel Charvat <pchar@ucw.cz>
*
* This software may be freely distributed and used according to the terms
* of the GNU Lesser General Public License.
*/
-#ifndef _UCW_FF_UTF8_H
-#define _UCW_FF_UTF8_H
+#ifndef _UCW_FF_UNICODE_H
+#define _UCW_FF_UNICODE_H
#include "lib/fastbuf.h"
#include "lib/unicode.h"
--- /dev/null
+/*
+ * UCW Library: An alias for lib/ff-unicode.h (for backwards compatibility)
+ *
+ * (c) 2008 Pavel Charvat <pchar@ucw.cz>
+ *
+ * This software may be freely distributed and used according to the terms
+ * of the GNU Lesser General Public License.
+ */
+
+#ifndef _UCW_FF_UTF8_H
+#define _UCW_FF_UTF8_H
+
+#include "lib/ff-unicode.h"
+
+#endif