?? iswlower.c
字號:
/*FUNCTION <<iswlower>>---lower-case 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 an upper-case translation.RETURNS<<iswlower>> returns non-zero if <[c]> is a lower-case 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -