| 86 | |
| 87 | |
| 88 | int main(int argc, char *argv[]) |
| 89 | { |
| 90 | int status; |
| 91 | |
| 92 | rig_load_all_backends(); |
| 93 | |
| 94 | printf(" Rig# \tMfg \tModel \tVersion \tStatus \tType \tMacro\n"); |
| 95 | |
| 96 | status = rig_list_foreach(print_caps_sum, NULL); |
| 97 | |
| 98 | if (status != RIG_OK) |
| 99 | { |
| 100 | printf("rig_list_foreach: error = %s \n", rigerror(status)); |
| 101 | exit(3); |
| 102 | } |
| 103 | |
| 104 | return 0; |
| 105 | } |
nothing calls this directly
no test coverage detected