nuttx/include/ctype.h
dongjiuzhu1 edbeb5cdd9 libs/ctype/toupper_l: Implement function toupper_l instead of macro
toupper_l will be replaced by toupper, resulting in infinite recursion, so implement toupper_l

stack:
0  std::__1::ctype_byname<char>::do_toupper (this=0xf3888120, c=49 '1') at libcxx/src/locale.cpp:1231
1  0x005b8188 in std::__1::ctype<char>::toupper (__c=49 '1', this=0xf3888120) at nuttx/include/libcxx/__locale:667
2  std::__1::ctype_byname<char>::do_toupper (this=0xf3888120, c=49 '1') at libcxx/src/locale.cpp:1231
3  0x005b8188 in std::__1::ctype<char>::toupper (__c=49 '1', this=0xf3888120) at nuttx/include/libcxx/__locale:667
4  std::__1::ctype_byname<char>::do_toupper (this=0xf3888120, c=49 '1') at libcxx/src/locale.cpp:1231
5  0x0064cfc9 in std::__1::ctype<char>::toupper (__c=49 '1', this=0xf3888120) at nuttx/include/libcxx/__locale:667
6  std::__1::__scan_keyword<char*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*, std::__1::ctype<char> > (__b=@0xf38871a0: 0xf3887220 "11:55:59 PM",
   __e=0xf388722b "", __kb=0xf2c03990, __ke=0xf2c03a38, __ct=..., __err=@0xf38871b0: 0, __case_sensitive=false) at nuttx/include/libcxx/locale:299
7  0x005cb0ed in std::__1::__time_get_storage<char>::__analyze (this=0xf2c0398c, fmt=114 'r', ct=...) at libcxx/src/locale.cpp:4998
8  0x005cf888 in std::__1::__time_get_storage<char>::init (this=0xf2c0398c, ct=...) at libcxx/src/locale.cpp:5295
9  0x005d4d0f in std::__1::__time_get_storage<char>::__time_get_storage (this=0xf2c0398c, __nm=...) at libcxx/src/locale.cpp:5399
10 0x005b15c8 in std::__1::time_get_byname<char, std::__1::istreambuf_iterator<char, std::__1::char_traits<char> > >::time_get_byname (__refs=0, __nm=..., this=0xf2c03980)
   at nuttx/include/libcxx/locale:2446
11 std::__1::locale::__imp::__imp (this=0xf2803970, name=..., refs=0) at libcxx/src/locale.cpp:268
12 0x005b333e in std::__1::locale::locale (this=0xf3888f00, name=0x6ca340 "C") at libcxx/src/locale.cpp:562
13 0x0058313b in helloxx_main (argc=1, argv=0xf3878810) at helloxx_main.cxx:112
14 0x0048471a in nxtask_startup (entrypt=0x5830a0 <helloxx_main(int, char**)>, argc=1, argv=0xf3878810) at sched/task_startup.c:70
15 0x00431bcd in nxtask_start () at task/task_start.c:134
16 0x0048f643 in pre_start () at sim/sim_initialstate.c:52
17 0x00000000 in ?? ()

Signed-off-by: dongjiuzhu1 <dongjiuzhu1@xiaomi.com>
2023-08-22 00:07:16 +08:00

406 lines
9.3 KiB
C

/****************************************************************************
* include/ctype.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __INCLUDE_CTYPE_H
#define __INCLUDE_CTYPE_H
/* There is no consistent ctype implementation, just a smattering of
* functions. Individually, they are okay, but a more standard, data lookup
* approach would make more sense if used extensively.
*/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/compiler.h>
#include <langinfo.h>
/****************************************************************************
* Inline Functions
****************************************************************************/
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
* Name: isspace
*
* Description:
* Checks for white-space characters. In the "C" and "POSIX" locales,
* these are: space, form-feed ('\f'), newline ('\n'), carriage return
* ('\r'), horizontal tab ('\t'), and vertical tab ('\v').
*
****************************************************************************/
#ifdef __cplusplus
static inline int isspace(int c)
{
return c == ' ' || c == '\t' || c == '\n' || c == '\r' ||
c == '\f' || c == '\v';
}
static inline int isspace_l(int c, locale_t locale)
{
return isspace(c);
}
#else
int isspace(int c);
int isspace_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isascii
*
* Description:
* Checks whether c is a 7-bit unsigned char value that fits into the
* ASCII character set.
*
****************************************************************************/
#ifdef __cplusplus
static inline int isascii(int c)
{
return c >= 0 && c <= 0x7f;
}
static inline int isascii_l(int c, locale_t locale)
{
return isascii(c);
}
#else
int isascii(int c);
int isascii_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isprint
*
* Description:
* Checks for a printable character (including space)
*
****************************************************************************/
#ifdef __cplusplus
static inline int isprint(int c)
{
return c >= 0x20 && c < 0x7f;
}
static inline int isprint_l(int c, locale_t locale)
{
return isprint(c);
}
#else
int isprint(int c);
int isprint_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isgraph
*
* Description:
* Checks for a printable character (excluding space)
*
****************************************************************************/
#ifdef __cplusplus
static inline int isgraph(int c)
{
return c > 0x20 && c < 0x7f;
}
static inline int isgraph_l(int c, locale_t locale)
{
return isgraph(c);
}
#else
int isgraph(int c);
int isgraph_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: iscntrl
*
* Description:
* Checks for control character.
*
****************************************************************************/
#ifdef __cplusplus
static inline int iscntrl(int c)
{
return c < 0x20 || c == 0x7f;
}
static inline int iscntrl_l(int c, locale_t locale)
{
return iscntrl(c);
}
#else
int iscntrl(int c);
int iscntrl_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: islower
*
* Description:
* Checks for an lowercase letter.
*
****************************************************************************/
#ifdef __cplusplus
static inline int islower(int c)
{
return c >= 'a' && c <= 'z';
}
static inline int islower_l(int c, locale_t locale)
{
return islower(c);
}
#else
int islower(int c);
int islower_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isupper
*
* Description:
* Checks for an uppercase letter.
*
****************************************************************************/
#ifdef __cplusplus
static inline int isupper(int c)
{
return c >= 'A' && c <= 'Z';
}
static inline int isupper_l(int c, locale_t locale)
{
return isupper(c);
}
#else
int isupper(int c);
int isupper_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isalpha
*
* Description:
* Checks for an alphabetic character
*
****************************************************************************/
#ifdef __cplusplus
static inline int isalpha(int c)
{
return islower(c) || isupper(c);
}
static inline int isalpha_l(int c, locale_t locale)
{
return isalpha(c);
}
#else
int isalpha(int c);
int isalpha_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isblank
*
* Description:
* Checks for blank characters (space or tab). C++11
*
****************************************************************************/
#ifdef __cplusplus
static inline int isblank(int c)
{
return c == ' ' || c == '\t';
}
static inline int isblank_l(int c, locale_t locale)
{
return isblank(c);
}
#else
int isblank(int c);
int isblank_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isdigit
*
* Description:
* ANSI standard isdigit implementation.
*
****************************************************************************/
#ifdef __cplusplus
static inline int isdigit(int c)
{
return c >= '0' && c <= '9';
}
static inline int isdigit_l(int c, locale_t locale)
{
return isdigit(c);
}
#else
int isdigit(int c);
int isdigit_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isalnum
*
* Description:
* Checks for an alphanumeric character
*
****************************************************************************/
#ifdef __cplusplus
static inline int isalnum(int c)
{
return isalpha(c) || isdigit(c);
}
static inline int isalnum_l(int c, locale_t locale)
{
return isalnum(c);
}
#else
int isalnum(int c);
int isalnum_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: ispunct
*
* Description:
* Checks for a printable character which is not a space or an
* alphanumeric character
*
****************************************************************************/
#ifdef __cplusplus
static inline int ispunct(int c)
{
return isgraph(c) && !isalnum(c);
}
static inline int ispunct_l(int c, locale_t locale)
{
return ispunct(c);
}
#else
int ispunct(int c);
int ispunct_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: isxdigit
*
* Description:
* isxdigit() checks for a hexadecimal digits, i.e. one of {0-9,a-f,A-F}
*
****************************************************************************/
#ifdef __cplusplus
static inline int isxdigit(int c)
{
return (c >= '0' && c <= '9') ||
(c >= 'a' && c <= 'f') ||
(c >= 'A' && c <= 'F');
}
static inline int isxdigit_l(int c, locale_t locale)
{
return isxdigit(c);
}
#else
int isxdigit(int c);
int isxdigit_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: toupper
*
* Description:
* toupper() converts the letter c to upper case, if possible.
*
****************************************************************************/
#ifdef __cplusplus
static inline int toupper(int c)
{
return (c >= 'a' && c <= 'z') ? c - 'a' + 'A' : c;
}
static inline int toupper_l(int c, locale_t locale)
{
return toupper(c);
}
#else
int toupper(int c);
int toupper_l(int c, locale_t locale);
#endif
/****************************************************************************
* Name: tolower
*
* Description:
* tolower() converts the letter c to lower case, if possible.
*
****************************************************************************/
#ifdef __cplusplus
static inline int tolower(int c)
{
return (c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c;
}
static inline int tolower_l(int c, locale_t locale)
{
return tolower(c);
}
#else
int tolower(int c);
int tolower_l(int c, locale_t locale);
#endif
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif /* __INCLUDE_CTYPE_H */