src/inc/common.h 1.174
1.174 2010/06/02 19:07:02 tdreszer
Added skipBeyondDelimit()
Index: src/inc/common.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/common.h,v
retrieving revision 1.173
retrieving revision 1.174
diff -b -B -U 4 -r1.173 -r1.174
--- src/inc/common.h 29 May 2010 22:24:53 -0000 1.173
+++ src/inc/common.h 2 Jun 2010 19:07:02 -0000 1.174
@@ -848,8 +848,12 @@
#define chopCommas(string, words) chopByChar(string, ',', words, ArraySize(words))
/* Chop string by commas. */
+char *skipBeyondDelimit(char *s,char delimit);
+/* Returns NULL or pointer to first char beyond one (or more contiguous) delimit char.
+ If delimit is ' ' then skips beyond first patch of whitespace. */
+
char *skipLeadingSpaces(char *s);
/* Return first non-white space */
char *skipToSpaces(char *s);