| 720 | } |
| 721 | |
| 722 | void EmbeddedShell::setLinenoiseMode(int mode) { |
| 723 | linenoiseSetMultiLine(mode, path_to_history); |
| 724 | if (mode == 0) { |
| 725 | printf("Single line mode enabled\n"); |
| 726 | } else { |
| 727 | printf("Multi line mode enabled\n"); |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | void EmbeddedShell::setMaxRows(const std::string& maxRowsString) { |
| 732 | uint64_t parsedMaxRows = 0; |
nothing calls this directly
no test coverage detected