Update of /cvsroot/monetdb/MonetDB4/src/modules/plain
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1779/src/modules/plain

Modified Files:
        ascii_io.mx 
Log Message:
export has_whitespace and only check for space and tabs


Index: ascii_io.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB4/src/modules/plain/ascii_io.mx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ascii_io.mx 23 Oct 2007 21:52:21 -0000      1.12
+++ ascii_io.mx 31 Oct 2007 11:56:05 -0000      1.13
@@ -295,6 +295,7 @@
 ascii_io_export ptr *ASCIIstrFrStr(ascii_io* fmt, char *s, char *e);
 ascii_io_export ptr *ASCIIadt_frStr(void *extra, int type, char *s, char *e, 
char quote);
 ascii_io_export int ASCIIadt_toStr(void *extra, char **buf, int *len, int 
type, ptr a);
+ascii_io_export int has_whitespace(char *sep);
 
 #endif
 @c
@@ -418,9 +419,9 @@
        return (*BATatoms[type].atomToStr) (buf, len, a);
 }
 
-#define myisspace(s)  (s == ' ' || s == '\t' || s == '\n')
+#define myisspace(s)  (s == ' ' || s == '\t')
 
-static int
+int
 has_whitespace(char *sep)
 {
        char *s = sep;


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to