#include #include "helper.h" #include "big_endian.h" int main(int argc, char **argv) { if (argc < 2) { fprintf(stderr, "One argument is required, which is the file name of the forest.\n"); return 1; } if (argc < 3) { fprintf(stderr, "It is required to supply the ouput file name.\n"); return 1; } print_forest_file(*(argv+1), *(argv+2)); }