Files
Upsilon/ion/src/f730/bench/command/exit.cpp
2019-01-09 10:01:28 +01:00

20 lines
220 B
C++

#include "command.h"
namespace Ion {
namespace Device {
namespace Bench {
namespace Command {
void Exit(const char * input) {
if (input != nullptr) {
reply(sSyntaxError);
return;
}
reply(sOK);
}
}
}
}
}