| 427 | } |
| 428 | |
| 429 | static void print_usage(const char *name) |
| 430 | { |
| 431 | printf("usage: %s [-vh?smdb]\n", name); |
| 432 | printf("\n" |
| 433 | " -v | --version: print the version\n" |
| 434 | " -h | --help: print this help\n\n" |
| 435 | " -d | --debug: enable debug output\n" |
| 436 | " -m | --me dump all me information on console\n" |
| 437 | " -b | --bootguard dump bootguard state of the platform\n" |
| 438 | "\n"); |
| 439 | exit(1); |
| 440 | } |
| 441 | |
| 442 | int main(int argc, char *argv[]) |
| 443 | { |
no test coverage detected