summaryrefslogtreecommitdiff
path: root/tests/web_interface/gen.c
blob: 2f015d650f37609bfa2135c8f5079f1d1edeac78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;

}