Blame lib/unistring/uninorm/nfkd.c

Packit Service 4684c1
/* Unicode Normalization Form KD.
Packit Service 4684c1
   Copyright (C) 2009-2020 Free Software Foundation, Inc.
Packit Service 4684c1
   Written by Bruno Haible <bruno@clisp.org>, 2009.
Packit Service 4684c1
Packit Service 4684c1
   This program is free software: you can redistribute it and/or
Packit Service 4684c1
   modify it under the terms of either:
Packit Service 4684c1
Packit Service 4684c1
     * the GNU Lesser General Public License as published by the Free
Packit Service 4684c1
       Software Foundation; either version 3 of the License, or (at your
Packit Service 4684c1
       option) any later version.
Packit Service 4684c1
Packit Service 4684c1
   or
Packit Service 4684c1
Packit Service 4684c1
     * the GNU General Public License as published by the Free
Packit Service 4684c1
       Software Foundation; either version 2 of the License, or (at your
Packit Service 4684c1
       option) any later version.
Packit Service 4684c1
Packit Service 4684c1
   or both in parallel, as here.
Packit Service 4684c1
   This program is distributed in the hope that it will be useful,
Packit Service 4684c1
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
   Lesser General Public License for more details.
Packit Service 4684c1
Packit Service 4684c1
   You should have received a copy of the GNU Lesser General Public License
Packit Service 4684c1
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit Service 4684c1
Packit Service 4684c1
#include <config.h>
Packit Service 4684c1
Packit Service 4684c1
/* Specification.  */
Packit Service 4684c1
#include "uninorm.h"
Packit Service 4684c1
Packit Service 4684c1
#include "normalize-internal.h"
Packit Service 4684c1
#include "uninorm/decompose-internal.h"
Packit Service 4684c1
Packit Service 4684c1
const struct unicode_normalization_form uninorm_nfkd =
Packit Service 4684c1
  {
Packit Service 4684c1
    NF_IS_COMPAT_DECOMPOSING,
Packit Service 4684c1
    uc_compat_decomposition,
Packit Service 4684c1
    NULL,
Packit Service 4684c1
    &uninorm_nfkd
Packit Service 4684c1
  };