]> git.ipfire.org Git - thirdparty/glibc.git/blame - ctype/ctype_l.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / ctype / ctype_l.c
CommitLineData
04277e02 1/* Copyright (C) 1991-2019 Free Software Foundation, Inc.
c84142e8
UD
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
c84142e8
UD
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
c84142e8 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; if not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
c84142e8
UD
17
18#define __NO_CTYPE
19#include <ctype.h>
20
21/* Provide real-function versions of all the ctype macros. */
22
23#define func(name, type) \
af85385f 24 int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \
1ab62b32
RM
25 weak_alias (__##name, name)
26
27func (isalnum_l, _ISalnum)
28func (isalpha_l, _ISalpha)
29func (iscntrl_l, _IScntrl)
30func (isdigit_l, _ISdigit)
31func (islower_l, _ISlower)
32func (isgraph_l, _ISgraph)
33func (isprint_l, _ISprint)
34func (ispunct_l, _ISpunct)
35func (isspace_l, _ISspace)
36func (isupper_l, _ISupper)
37func (isxdigit_l, _ISxdigit)
c84142e8
UD
38
39int
af85385f 40(__tolower_l) (int c, locale_t l)
c84142e8 41{
7e3f2875 42 return l->__ctype_tolower[c];
c84142e8 43}
1ab62b32 44weak_alias (__tolower_l, tolower_l)
c84142e8
UD
45
46int
af85385f 47(__toupper_l) (int c, locale_t l)
c84142e8 48{
7e3f2875 49 return l->__ctype_toupper[c];
c84142e8 50}
1ab62b32 51weak_alias (__toupper_l, toupper_l)