a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/oneShot/jccTest/jccTest.c src/oneShot/jccTest/jccTest.c index df82496..d5122de 100644 --- src/oneShot/jccTest/jccTest.c +++ src/oneShot/jccTest/jccTest.c @@ -1,28 +1,27 @@ /* jccTest - This implements the 'phone book' problem that Lutz Prechelt * used in An empirical comparison of C, C++, Java, Perl, Python, Rexx, and Tcl. * The problem roughly corresponds with trying to find mnemonic words to * help remember phone numbers. Each number is assigned a letter or two or * three. You're given a dictionary. You try to turn the phone number * into words in the dictionary. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "memalloc.h" -static char const rcsid[] = "$Id: jccTest.c,v 1.2 2004/12/19 05:13:18 kent Exp $"; #define MAXWORDSIZE 256 void usage() /* Explain usage and exit. */ { errAbort( "jccTest - 'phone book' test program used to compare various languages.\n" "usage:\n" " jccTest dictionary phonebook output\n" ); } /* These specify conversion from number to letter. */ static char *letterCode = "ejnqrwxdsyftamcivbkulopghz";