summaryrefslogtreecommitdiff
path: root/gen.c
diff options
context:
space:
mode:
Diffstat (limited to 'gen.c')
-rw-r--r--gen.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/gen.c b/gen.c
new file mode 100644
index 000000000..2f015d650
--- /dev/null
+++ b/gen.c
@@ -0,0 +1,14 @@
+// consolidate code into this file
+
+#include "bitmap.h"
+#include <dlfcn.h>
+
+int main(int argc, char const *argv[])
+{
+ if(argc != 5)
+ {
+ printf("Usage: %s <base ft.so dir> <test ft.so dir> <font dir> <char size>", argv[0]);
+ }
+ return 0;
+
+}