| 136 | } |
| 137 | |
| 138 | static int |
| 139 | test_cmdline_vt100_fns(void) |
| 140 | { |
| 141 | if (vt100_parser(NULL, 0) >= 0) { |
| 142 | printf("Error: function accepted null parameter!\n"); |
| 143 | return -1; |
| 144 | } |
| 145 | |
| 146 | /* void functions */ |
| 147 | vt100_init(NULL); |
| 148 | |
| 149 | return 0; |
| 150 | } |
| 151 | |
| 152 | static int |
| 153 | test_cmdline_socket_fns(void) |
no test coverage detected