| 270 | } |
| 271 | |
| 272 | Command SimpleCLI::addCommand(const char* name, void (* callback)(cmd* c)) { |
| 273 | return addCmd(name, callback); |
| 274 | } |
| 275 | |
| 276 | Command SimpleCLI::addBoundlessCommand(const char* name, void (* callback)(cmd* c)) { |
| 277 | return addBoundlessCmd(name, callback); |
nothing calls this directly
no outgoing calls
no test coverage detected