iswlower.c
来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 39 行
C
39 行
/*FUNCTION <<iswlower>>---lowercase wide character testINDEX iswlowerANSI_SYNOPSIS #include <wctype.h> int iswlower(wint_t <[c]>);TRAD_SYNOPSIS #include <wctype.h> int iswlower(<[c]>) wint_t <[c]>;DESCRIPTION<<iswlower>> is a function which classifies wide-character values thathave uppercase translations.RETURNS<<iswlower>> returns non-zero if <[c]> is a lowercase wide character.PORTABILITY<<iswlower>> is C99.No supporting OS subroutines are required.*/#include <_ansi.h>#include <wctype.h>int_DEFUN(iswlower,(c),wint_t c){ return (towupper (c) != c);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?