e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/filePath.c src/lib/filePath.c
index 9207b1a..80dc82a 100644
--- src/lib/filePath.c
+++ src/lib/filePath.c
@@ -1,16 +1,19 @@
 /* filePath - stuff to handle file name parsing. */
+
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
 #include "common.h"
 #include "filePath.h"
 
 
 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