| 594 | static int nlevels= 1; |
| 595 | |
| 596 | static void |
| 597 | usage(FILE *file, int rc) |
| 598 | { |
| 599 | fprintf(file, "Usage:\n"); |
| 600 | fprintf(file, "uca-dump [options...] < /path/to/allkeys.txt\n"); |
| 601 | fprintf(file, "\n"); |
| 602 | fprintf(file, "Options:\n"); |
| 603 | fprintf(file, "--levels=NUM How many levels to dump, 1-4, default 1.\n"); |
| 604 | fprintf(file, "--contractions=NUM Whether to dump comtractions, 0-1, default 0.\n"); |
| 605 | fprintf(file, "--optimize-contractions=NUM Whether to optimize contractions, 0-1, default 0.\n"); |
| 606 | fprintf(file, "--debug=NUM Print debug information, 0-1, default 0.\n"); |
| 607 | fprintf(file, "\n\n"); |
| 608 | exit(rc); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | static int |
no outgoing calls
no test coverage detected