src/hg/gsid/gsidTable/gsidTable.c 1.52
1.52 2009/11/22 18:02:07 fanhsu
Removed anyWild(), it was added to common.c.
Index: src/hg/gsid/gsidTable/gsidTable.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/gsid/gsidTable/gsidTable.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -b -B -U 4 -r1.51 -r1.52
--- src/hg/gsid/gsidTable/gsidTable.c 3 Nov 2009 16:38:13 -0000 1.51
+++ src/hg/gsid/gsidTable/gsidTable.c 22 Nov 2009 18:02:07 -0000 1.52
@@ -435,15 +435,8 @@
/* ---- Some helper routines for column methods. ---- */
-
-boolean anyWild(char *s)
-/* Return TRUE if there are '?' or '*' characters in s. */
-{
-return strchr(s, '?') != NULL || strchr(s, '*') != NULL;
-}
-
boolean wildMatchAny(char *word, struct slName *wildList)
/* Return TRUE if word matches any thing in wildList. */
{
struct slName *w;