CVS: msp430-libc/include ctype.h,1.5,1.6

Chris Liechti <[email protected]>
Newsgroups gmane.comp.hardware.texas-instruments.msp430.gcc.cvs
Message-ID <[email protected]>
Update of /cvsroot/mspgcc/msp430-libc/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12212/msp430-libc/include

Modified Files:
	ctype.h 
Log Message:
isprint included control characters

Index: ctype.h
===================================================================
RCS file: /cvsroot/mspgcc/msp430-libc/include/ctype.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- ctype.h	18 May 2002 06:14:05 -0000	1.5
+++ ctype.h	12 Sep 2005 12:14:09 -0000	1.6
@@ -18,7 +18,7 @@
 
 extern inline int islower(int c)		{ return ((c) >= 'a' && (c) <= 'z');}
 
-extern inline int isprint(int c)                { return (c>23 && c<127);}
+extern inline int isprint(int c)                { return (c >= ' ' && c < 127);}
 
 extern inline int isblank(int c)                { return (c=='\t' || c==' ');}
 



-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.