⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iswlower.c

📁 用于嵌入式Linux系统的标准C的库函数
💻 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 + -