summaryrefslogtreecommitdiff
path: root/generators.h
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2014-08-03 12:47:33 -0500
committerBobby Bingham <koorogi@koorogi.info>2014-08-03 12:47:33 -0500
commitf07937bb63ed12a50a203c3f8015649f37bc73e5 (patch)
treeb6fb47dcfd1048b4ac0b898480eb539c38ce6282 /generators.h
parent85f2a592114832c67c70b9138905b44890b800bd (diff)
Rename generators to testcases
This is in preparation for adding an implementation of the quicksort-killer test case, which requires a custom comparison function rather than just a custom imput-generation function.
Diffstat (limited to 'generators.h')
-rw-r--r--generators.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/generators.h b/generators.h
deleted file mode 100644
index e08a0be..0000000
--- a/generators.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stddef.h>
-
-typedef void (*generatorfn)(int *, size_t);
-
-extern const struct generator {
- const char *name;
- generatorfn func;
-} generators[];