Update of /cvsroot/rtk/rtk/rtk
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29658/rtk
Modified Files:
rchar_unicode.h
Log Message:
fixed risascii
Index: rchar_unicode.h
===================================================================
RCS file: /cvsroot/rtk/rtk/rtk/rchar_unicode.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** rchar_unicode.h 29 Feb 2004 20:53:25 -0000 1.6
--- rchar_unicode.h 29 Feb 2004 21:27:34 -0000 1.7
***************
*** 121,125 ****
// is*
! #define risascii iswascii
#define riscntrl iswcntrl
#define risgraph iswgraph
--- 121,125 ----
// is*
! #define risascii(c) (((c) & ~0x7f)==0) /* If C is a 7 bit value. */
#define riscntrl iswcntrl
#define risgraph iswgraph
|