Update of /cvsroot/mod-c/ehtml/include
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv8365/include
Modified Files:
Common.h
Log Message:
Added skip_ws, skip_word functions.
Index: Common.h
===================================================================
RCS file: /cvsroot/mod-c/ehtml/include/Common.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Common.h 8 Sep 2006 20:59:30 -0000 1.9
--- Common.h 11 Sep 2006 23:17:06 -0000 1.10
***************
*** 197,200 ****
--- 197,205 ----
void* xmemdup(const void* p, size_t n);
+ const char* skip_ws(const char* s);
+ char* skip_ws(char* s);
+ const char* skip_word(const char* s);
+ char* skip_word(char* s);
+
#ifdef DEBUG
#define ASSERT( expr ) {\
|