src/inc/common.h 1.162

1.162 2009/11/22 00:18:04 kent
Adding simplifyPathToDir
Index: src/inc/common.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/common.h,v
retrieving revision 1.161
retrieving revision 1.162
diff -b -B -U 4 -r1.161 -r1.162
--- src/inc/common.h	20 Nov 2009 19:11:16 -0000	1.161
+++ src/inc/common.h	22 Nov 2009 00:18:04 -0000	1.162
@@ -705,8 +705,12 @@
 
 char lastChar(char *s);
 /* Return last character in string. */
 
+char *matchingCharBeforeInLimits(char *limit, char *s, char c);
+/* Look for character c sometime before s, but going no further than limit.
+ * Return NULL if not found. */
+
 boolean wildMatch(const char *wildCard, const char *string);
 /* does a case insensitive wild card match with a string.
  * * matches any string or no character.
  * ? matches any single character.