Blame lib/unistring/uninorm/decompose-internal.c

Packit aea12f
/* Decomposition of Unicode strings.
Packit Service 991b93
   Copyright (C) 2009-2020 Free Software Foundation, Inc.
Packit aea12f
   Written by Bruno Haible <bruno@clisp.org>, 2009.
Packit aea12f
Packit aea12f
   This program is free software: you can redistribute it and/or
Packit aea12f
   modify it under the terms of either:
Packit aea12f
Packit aea12f
     * the GNU Lesser General Public License as published by the Free
Packit aea12f
       Software Foundation; either version 3 of the License, or (at your
Packit aea12f
       option) any later version.
Packit aea12f
Packit aea12f
   or
Packit aea12f
Packit aea12f
     * the GNU General Public License as published by the Free
Packit aea12f
       Software Foundation; either version 2 of the License, or (at your
Packit aea12f
       option) any later version.
Packit aea12f
Packit aea12f
   or both in parallel, as here.
Packit aea12f
   This program is distributed in the hope that it will be useful,
Packit aea12f
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
   Lesser General Public License for more details.
Packit aea12f
Packit aea12f
   You should have received a copy of the GNU Lesser General Public License
Packit aea12f
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit aea12f
Packit aea12f
#include <config.h>
Packit aea12f
Packit aea12f
/* Specification.  */
Packit aea12f
#include "decompose-internal.h"
Packit aea12f
Packit aea12f
#define ELEMENT struct ucs4_with_ccc
Packit aea12f
#define COMPARE(a,b) ((a)->ccc - (b)->ccc)
Packit aea12f
#define STATIC
Packit Service 991b93
#define STATIC_FROMTO static
Packit aea12f
#define merge_sort_fromto gl_uninorm_decompose_merge_sort_fromto
Packit aea12f
#define merge_sort_inplace gl_uninorm_decompose_merge_sort_inplace
Packit aea12f
#include "array-mergesort.h"