diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-12-02 22:46:53 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-12-02 22:46:53 +0000 |
commit | 29b4be759a1cb9071f684712a745e4b92bd366d0 (patch) | |
tree | 420c69d9e3125fa5ccbd4216e27d200b25f01bed /tests/test.c | |
parent | f823497bd9d420a2cf83fa56f5090d4227ba73f5 (diff) |
Notes
Diffstat (limited to 'tests/test.c')
-rw-r--r-- | tests/test.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/test.c b/tests/test.c deleted file mode 100644 index 5d7815629814..000000000000 --- a/tests/test.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - Tests the generated perfect hash function. - The -v option prints diagnostics as to whether a word is in - the set or not. Without -v the program is useful for timing. -*/ - -#include <stdio.h> - -#define MAX_LEN 80 - -int -main (argc, argv) - int argc; - char *argv[]; -{ - int verbose = argc > 1 ? 1 : 0; - char buf[MAX_LEN]; - - while (gets (buf)) - if (in_word_set (buf, strlen (buf)) && verbose) - printf ("in word set %s\n", buf); - else if (verbose) - printf ("NOT in word set %s\n", buf); - - return 0; -} |