src/inc/common.h 1.155
1.155 2009/09/24 22:21:42 tdreszer
Added eraseNonAlphaNum()
Index: src/inc/common.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/common.h,v
retrieving revision 1.154
retrieving revision 1.155
diff -b -B -U 4 -r1.154 -r1.155
--- src/inc/common.h 23 Sep 2009 18:42:26 -0000 1.154
+++ src/inc/common.h 24 Sep 2009 22:21:42 -0000 1.155
@@ -812,8 +812,11 @@
void eraseWhiteSpace(char *s);
/* Remove white space from a string */
+void eraseNonAlphaNum(char *s);
+/* Remove non-alphanumeric chars from string */
+
char *trimSpaces(char *s);
/* Remove leading and trailing white space. */
void repeatCharOut(FILE *f, char c, int count);