From: Bruno Haible Date: Sat, 21 Feb 2009 11:39:28 +0000 (+0100) Subject: New module 'uninorm/u16-normalize'. X-Git-Tag: v0.1~6297 X-Git-Url: https://erislabs.net/gitweb/?a=commitdiff_plain;h=a7173cf08454160eceb00860a13bb9d77ca8a963;hp=bd606be378ddd8404641cad023dd43f1f676b26e;p=gnulib.git New module 'uninorm/u16-normalize'. --- diff --git a/ChangeLog b/ChangeLog index 175d2d9ad..7577c7d30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-02-21 Bruno Haible + New module 'uninorm/u16-normalize'. + * lib/uninorm/u16-normalize.c: New file. + * modules/uninorm/u16-normalize: New file. + New module 'uninorm/u8-normalize'. * lib/uninorm/u8-normalize.c: New file. * lib/uninorm/normalize-internal.h: New file. diff --git a/lib/uninorm/u16-normalize.c b/lib/uninorm/u16-normalize.c new file mode 100644 index 000000000..86334d530 --- /dev/null +++ b/lib/uninorm/u16-normalize.c @@ -0,0 +1,38 @@ +/* Normalization of UTF-16 strings. + Copyright (C) 2009 Free Software Foundation, Inc. + Written by Bruno Haible , 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 . */ + +#include + +/* Specification. */ +#include "uninorm.h" + +#include +#include +#include +#include + +#include "unistr.h" +#include "unictype.h" +#include "normalize-internal.h" +#include "decompose-internal.h" + +#define FUNC u16_normalize +#define UNIT uint16_t +#define U_MBTOUC_UNSAFE u16_mbtouc_unsafe +#define U_UCTOMB u16_uctomb +#define U_CPY u16_cpy +#include "u-normalize-internal.h" diff --git a/modules/uninorm/u16-normalize b/modules/uninorm/u16-normalize new file mode 100644 index 000000000..076a7054a --- /dev/null +++ b/modules/uninorm/u16-normalize @@ -0,0 +1,31 @@ +Description: +Normalization of UTF-16 strings. + +Files: +lib/uninorm/u16-normalize.c +lib/uninorm/normalize-internal.h +lib/uninorm/u-normalize-internal.h + +Depends-on: +uninorm/base +unistr/u16-mbtouc-unsafe +unistr/u16-uctomb +unistr/u16-cpy +unictype/combining-class +uninorm/decompose-internal + +configure.ac: +gl_MODULE_INDICATOR([uninorm/u16-normalize]) + +Makefile.am: +lib_SOURCES += uninorm/u16-normalize.c + +Include: +"uninorm.h" + +License: +LGPL + +Maintainer: +Bruno Haible +