root / proj / proj.c @ 146
History | View | Annotate | Download (373 Bytes)
1 |
#include <lcom/lcf.h> |
---|---|
2 |
#include <lcom/proj.h> |
3 |
#include <lcom/liblm.h> |
4 |
|
5 |
#include <stdint.h> |
6 |
|
7 |
int main(int argc, char* argv[]) { |
8 |
|
9 |
lcf_set_language("EN-US");
|
10 |
|
11 |
//lcf_trace_calls("/home/lcom/labs/proj/trace.txt");
|
12 |
|
13 |
//lcf_log_output("/home/lcom/labs/proj/output.txt");
|
14 |
|
15 |
if (lcf_start(argc, argv)) return 1; |
16 |
|
17 |
lcf_cleanup(); |
18 |
|
19 |
return 0; |
20 |
} |