mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 08:10:50 +01:00
20 lines
220 B
C++
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);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|