diff options
Diffstat (limited to 'prime.c')
-rw-r--r-- | prime.c | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -17,6 +17,7 @@ #include <gbm.h> #include "logind.h" +#include "complete.h" #define TEST_WIDTH 640 #define TEST_HEIGHT 480 @@ -245,7 +246,11 @@ static void usage(FILE *fp) "\n"); } -struct option long_opts[] = { +enum { + OPT_LONG_COMP_BASH = 0x100, +}; + +static struct option long_opts[] = { { /* --- no argument --- */ .name = "help", @@ -256,6 +261,10 @@ struct option long_opts[] = { .has_arg = false, .val = 'l', },{ + .name = "complete-bash", + .has_arg = false, + .val = OPT_LONG_COMP_BASH, + },{ /* end of list */ } }; @@ -274,6 +283,9 @@ int main(int argc, char **argv) case 'l': list = true; break; + case OPT_LONG_COMP_BASH: + complete_bash("prime", long_opts); + exit(0); case 'h': usage(stdout); exit(0); |