a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/filePath.c src/lib/filePath.c index 50019dd..9207b1a 100644 --- src/lib/filePath.c +++ src/lib/filePath.c @@ -1,20 +1,19 @@ /* filePath - stuff to handle file name parsing. */ #include "common.h" #include "filePath.h" -static char const rcsid[] = "$Id: filePath.c,v 1.3 2008/09/17 17:56:37 kent Exp $"; void undosPath(char *path) /* Convert '\' to '/' in path. */ { subChar(path, '\\', '/'); } void splitPath(char *path, char dir[PATH_LEN], char name[FILENAME_LEN], char extension[FILEEXT_LEN]) /* Split a full path into components. The dir component will include the * trailing / if any. The extension component will include the starting * . if any. Pass in NULL for dir, name, or extension if you don't care about * that part. */ { char *dirStart, *nameStart, *extStart, *extEnd;