FreeCalypso > hg > freecalypso-reveng
comparison blobstat/main.c @ 294:ff2a6433687f
blobstat: code finished, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 21 Sep 2019 21:17:29 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
293:23e5b940cb8b | 294:ff2a6433687f |
---|---|
1 #include <stdio.h> | |
2 #include <stdlib.h> | |
3 | |
4 main(argc, argv) | |
5 char **argv; | |
6 { | |
7 if (argc != 3) { | |
8 fprintf(stderr, "usage: %s class-file map-file\n", argv[0]); | |
9 exit(1); | |
10 } | |
11 read_class_file(argv[1]); | |
12 process_map_file(argv[2]); | |
13 print_output(); | |
14 exit(0); | |
15 } |