18cad7657899363769f7dc179754ad45e99cb46b
kent
  Mon Jun 21 13:38:48 2010 -0700
Renaming function and putting prototype for it in a shared header file.  Again this is all part of testing renaming/splitting/merging functions.
diff --git src/oneShot/testGitRename/testGitRename.c src/oneShot/testGitRename/testGitRename.c
index 45fb36d..0f7734a 100644
--- src/oneShot/testGitRename/testGitRename.c
+++ src/oneShot/testGitRename/testGitRename.c
@@ -1,36 +1,35 @@
 /* testGitRename - Just a little something to test renaming, merging, etc.. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
+#include "upperFile.h"
 
 static char const rcsid[] = "$Id: newProg.c,v 1.30 2010/03/24 21:18:33 hiram Exp $";
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "testGitRename - Just a little something to test renaming, merging, etc.\n"
   "usage:\n"
   "   testGitRename input output\n"
   "options:\n"
   "   -xxx=XXX\n"
   );
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
-void testGitRename(char *input, char *output);
-/* testGitRename - Just a little something to test renaming, merging, etc.. */
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 3)
     usage();
-testGitRename(argv[1], argv[2]);
+upperFile(argv[1], argv[2]);
 return 0;
 }