mirror of
https://github.com/Thesola10/umd-livepatch.git
synced 2025-04-19 22:13:22 +00:00
19 lines
259 B
C
19 lines
259 B
C
#include "usage.rl.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int res;
|
|
options_t opts;
|
|
|
|
res = parse_options(argc, argv, &opts);
|
|
if (res == -1)
|
|
return -1;
|
|
|
|
if (opts.help) {
|
|
show_usage();
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|