Oops, fix typo in istype definition

This commit is contained in:
Andrey A. Chernov 1997-09-27 04:30:50 +00:00
parent 917065108a
commit 659ad3a4a1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=29884
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ int digittoint __P((int));
#endif
__END_DECLS
#define __istype(c,f) (!!__maskrune((c),(f))
#define __istype(c,f) (!!__maskrune((c),(f)))
#define isalnum(c) __istype((c), _A|_D)
#define isalpha(c) __istype((c), _A)

View File

@ -88,7 +88,7 @@ int digittoint __P((int));
#endif
__END_DECLS
#define __istype(c,f) (!!__maskrune((c),(f))
#define __istype(c,f) (!!__maskrune((c),(f)))
#define isalnum(c) __istype((c), _A|_D)
#define isalpha(c) __istype((c), _A)