src/hg/near/hgNear/hgNear.c 1.185
1.185 2009/11/20 19:17:35 angie
Removing duplicate definition of anyWild (use the common.h/wildcmp.c version).
Index: src/hg/near/hgNear/hgNear.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/near/hgNear/hgNear.c,v
retrieving revision 1.184
retrieving revision 1.185
diff -b -B -U 4 -r1.184 -r1.185
--- src/hg/near/hgNear/hgNear.c 10 Feb 2009 22:26:34 -0000 1.184
+++ src/hg/near/hgNear/hgNear.c 20 Nov 2009 19:17:35 -0000 1.185
@@ -90,14 +90,8 @@
return strcmp(a->protein, b->protein);
}
}
-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;