changeset 30981:cefdbbea69b2

New module 'uninorm/u32-normxfrm'.
author Bruno Haible <bruno@clisp.org>
date Sat, 07 Mar 2009 16:38:39 +0100
parents 05db6891e5f0
children e675d5601c4f
files ChangeLog lib/uninorm/u32-normxfrm.c modules/uninorm/u32-normxfrm
diffstat 3 files changed, 66 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Mar 07 16:38:05 2009 +0100
+++ b/ChangeLog	Sat Mar 07 16:38:39 2009 +0100
@@ -1,5 +1,9 @@
 2009-03-07  Bruno Haible  <bruno@clisp.org>
 
+	New module 'uninorm/u32-normxfrm'.
+	* lib/uninorm/u32-normxfrm.c: New file.
+	* modules/uninorm/u32-normxfrm: New file.
+
 	New module 'uninorm/u16-normxfrm'.
 	* lib/uninorm/u16-normxfrm.c: New file.
 	* modules/uninorm/u16-normxfrm: New file.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/uninorm/u32-normxfrm.c	Sat Mar 07 16:38:39 2009 +0100
@@ -0,0 +1,34 @@
+/* Locale dependent transformation for comparison of UTF-32 strings.
+   Copyright (C) 2009 Free Software Foundation, Inc.
+   Written by Bruno Haible <bruno@clisp.org>, 2009.
+
+   This program is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Lesser General Public License as published
+   by the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#include <config.h>
+
+/* Specification.  */
+#include "uninorm.h"
+
+#include <errno.h>
+#include <stdlib.h>
+
+#include "localcharset.h"
+#include "uniconv.h"
+#include "memxfrm.h"
+
+#define FUNC u32_normxfrm
+#define UNIT uint32_t
+#define U_NORMALIZE u32_normalize
+#define U_CONV_TO_ENCODING u32_conv_to_encoding
+#include "u-normxfrm.h"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/modules/uninorm/u32-normxfrm	Sat Mar 07 16:38:39 2009 +0100
@@ -0,0 +1,28 @@
+Description:
+Locale dependent transformation for comparison of UTF-32 strings.
+
+Files:
+lib/uninorm/u32-normxfrm.c
+lib/uninorm/u-normxfrm.h
+
+Depends-on:
+uninorm/base
+uninorm/u32-normalize
+uniconv/u32-conv-to-enc
+localcharset
+memxfrm
+
+configure.ac:
+
+Makefile.am:
+lib_SOURCES += uninorm/u32-normxfrm.c
+
+Include:
+"uninorm.h"
+
+License:
+LGPL
+
+Maintainer:
+Bruno Haible
+