mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-07 11:41:16 +02:00
Added macros for iascii(), ilower(), iprint(), and iupper().
This commit is contained in:
parent
f03722f64b
commit
232824511b
1 changed files with 5 additions and 0 deletions
|
@ -58,3 +58,8 @@
|
|||
#define imeta(X) _icom(X,IMETA)
|
||||
#define iwsep(X) _icom(X,IWSEP)
|
||||
#define inull(X) _icom(X,INULL)
|
||||
|
||||
#define iascii(X) isascii(STOUC(X))
|
||||
#define ilower(X) islower(STOUC(X))
|
||||
#define iprint(X) isprint(STOUC(X))
|
||||
#define iupper(X) isupper(STOUC(X))
|
||||
|
|
Loading…
Reference in a new issue