Update of /cvsroot/monetdb/MonetDB5/src/modules/mal
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1768/src/modules/mal
Modified Files:
tablet.mx
Log Message:
export has_whitespace and only check for space and tabs.
Index: tablet.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/tablet.mx,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- tablet.mx 23 Oct 2007 21:53:08 -0000 1.104
+++ tablet.mx 31 Oct 2007 11:55:41 -0000 1.105
@@ -452,6 +452,7 @@
tablet_export int TABLETadt_toStr(void *extra, char **buf, int *len, int type,
ptr a);
tablet_export int insert_line(Tablet * as, char *line, ptr key);
tablet_export int output_file_dense(Tablet * as, stream *fd);
+tablet_export int has_whitespace(char *sep);
#endif
@c
@@ -1004,9 +1005,9 @@
}
}
-#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