aboutsummaryrefslogtreecommitdiff
path: root/Converter/src/main.c
blob: 8d03c027cb83a5a37442659dd56a9c7a998e90d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "../includes/compiler.h"
#include "../includes/test.h"
#include <malloc.h>
#include <stdio.h>
#include <string.h>

int main(int argc, char *argv[])
{
  if (argc > 1)
  {
    if (strncmp(argv[1], "--test", 7) == 0)
    {
      // run tests
      test_header_depths();
    }
  }
}