]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/grouping.h
stdlib: Simplify buffer management in canonicalize
[thirdparty/glibc.git] / stdlib / grouping.h
CommitLineData
f0bf9cb9 1/* Internal header for proving correct grouping in strings of numbers.
581c785b 2 Copyright (C) 1995-2022 Free Software Foundation, Inc.
41bdb6e2 3 This file is part of the GNU C Library.
f0bf9cb9 4
feb3c934 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
f0bf9cb9 9
feb3c934
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
f0bf9cb9 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
f0bf9cb9 18
f0bf9cb9
RM
19/* Find the maximum prefix of the string between BEGIN and END which
20 satisfies the grouping rules. It is assumed that at least one digit
21 follows BEGIN directly. */
9c7ff11a
UD
22extern const wchar_t *__correctly_grouped_prefixwc (const wchar_t *begin,
23 const wchar_t *end,
24 wchar_t thousands,
25 const char *grouping)
26 attribute_hidden;
27
28extern const char *__correctly_grouped_prefixmb (const char *begin,
29 const char *end,
30 const char *thousands,
31 const char *grouping)
32 attribute_hidden;