| 116 | |
| 117 | |
| 118 | static int get_options(int *argc,char ***argv) |
| 119 | { |
| 120 | int ho_error; |
| 121 | |
| 122 | if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option))) |
| 123 | exit(ho_error); |
| 124 | |
| 125 | if (!*argc) |
| 126 | { |
| 127 | usage(); |
| 128 | return 1; |
| 129 | } |
| 130 | return 0; |
| 131 | } /* get_options */ |
| 132 | |
| 133 | |
| 134 | static const char *get_ha_error_msg(int code) |
no test coverage detected