#include <string.h>
#include <ctype.h>
#include <precomp.h>
Go to the source code of this file.
◆ __MINGW_IMPORT
◆ upalpha
◆ __isascii()
Definition at line 655 of file ctype.c.
656{
657 return ((
unsigned char)
c <= 0x7f);
658}
◆ __iscsym()
Definition at line 679 of file ctype.c.
680{
681 return (
c < 127 && (
isalnum(
c) || (
c ==
'_')));
682}
int __cdecl isalnum(int c)
◆ __iscsymf()
Definition at line 687 of file ctype.c.
688{
689 return (
c < 127 && (
isalpha(
c) || (
c ==
'_')));
690}
◆ __p__pwctype()
◆ __pwctype_func()
◆ __toascii()
Definition at line 843 of file ctype.c.
844{
845 return((
unsigned int)(
c) & 0x7f);
846}
◆ _isctype()
Definition at line 613 of file ctype.c.
614{
616}
int __cdecl _isctype_l(int c, int type, _locale_t locale)
Referenced by _tolower(), _toupper(), isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit(), tolower(), and toupper().
◆ _isctype_l()
Definition at line 583 of file ctype.c.
584{
586
589 else
591
592 if (
c >= -1 &&
c <= 255)
594
595 if (
locinfo->mb_cur_max != 1 &&
c > 0)
596 {
597
600
602 *pconv++ = (
UINT)
c >> 8;
604 *pconv = 0;
605
608 return typeInfo &
type;
609 }
610 return 0;
611}
BOOL WINAPI GetStringTypeExA(LCID locale, DWORD type, LPCSTR src, INT count, LPWORD chartype)
GLuint GLuint GLsizei GLenum type
struct MSVCRT_localeinfo_struct * MSVCRT__locale_t
Referenced by _isctype(), and _isleadbyte_l().
◆ _isleadbyte_l()
◆ _tolower()
Definition at line 851 of file ctype.c.
852{
856}
int __cdecl _isctype(int c, int ctypeFlags)
◆ _toupper()
◆ isalnum()
◆ isalpha()
◆ iscntrl()
◆ isdigit()
◆ isgraph()
◆ islower()
◆ isprint()
◆ ispunct()
◆ isspace()
◆ isupper()
◆ iswalnum()
Definition at line 647 of file ctype.c.
648{
650}
int __cdecl iswctype(wint_t wc, wctype_t wctypeFlags)
◆ iswalpha()
◆ iswascii()
◆ iswcntrl()
◆ iswdigit()
◆ iswgraph()
◆ iswlower()
◆ iswprint()
◆ iswpunct()
◆ iswspace()
◆ iswupper()
◆ iswxdigit()
◆ isxdigit()
◆ tolower()
◆ toupper()
◆ towlower()
◆ towupper()
◆ _ctype
◆ _pctype
◆ _pwctype
◆ _wctype
◆ wine_wctype_table