a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/qa.c src/lib/qa.c index aaceeca..65f171f 100644 --- src/lib/qa.c +++ src/lib/qa.c @@ -1,28 +1,27 @@ /* qa - Modules to help do testing, especially on html based apps. */ #include "common.h" #include "hash.h" #include "dystring.h" #include "portable.h" #include "htmlPage.h" #include "errabort.h" #include "errCatch.h" #include "htmshell.h" #include "qa.h" -static char const rcsid[] = "$Id: qa.c,v 1.7 2008/09/17 17:56:38 kent Exp $"; char *qaStringBetween(char *text, char *startPattern, char *endPattern) /* Return text that occurs between startPattern and endPattern, * or NULL if no startPattern. (Will return up to 100 characters * after startPattern if there is no endPattern) */ { char *startMid = stringIn(startPattern, text); if (startMid != NULL) { char *endMid; int midSize; startMid += strlen(startPattern); endMid = stringIn(startMid, endPattern); if (endMid == NULL) {