diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:47:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:47:50 +0000 |
commit | bbe35a6e1b54ef5cd7c1c471886c30ba85c0804e (patch) | |
tree | 985a31e8c860c690d9f20e6621ce5fcc05ccd244 /lib/unicase/caseprop.h | |
parent | Initial commit. (diff) | |
download | wget-bbe35a6e1b54ef5cd7c1c471886c30ba85c0804e.tar.xz wget-bbe35a6e1b54ef5cd7c1c471886c30ba85c0804e.zip |
Adding upstream version 1.21.upstream/1.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | lib/unicase/caseprop.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/unicase/caseprop.h b/lib/unicase/caseprop.h new file mode 100644 index 0000000..52ce099 --- /dev/null +++ b/lib/unicase/caseprop.h @@ -0,0 +1,34 @@ +/* Case related properties of Unicode characters. + Copyright (C) 2009-2020 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 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 + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. */ + +#include <stdbool.h> +#include "unitypes.h" + +/* Determine whether a character is "cased" according to the Unicode Standard, + <https://www.unicode.org/versions/Unicode5.0.0/ch03.pdf>, section 3.13, + definition D120. */ +extern bool + uc_is_cased (ucs4_t uc) + _UC_ATTRIBUTE_CONST; + +/* Determine whether a character is "case-ignorable" + according to the Unicode Standard, + <https://www.unicode.org/versions/Unicode5.0.0/ch03.pdf>, section 3.13, + definition D121. */ +extern bool + uc_is_case_ignorable (ucs4_t uc) + _UC_ATTRIBUTE_CONST; |