Hide the line the user is typing. */
| 165 | |
| 166 | /* Hide the line the user is typing. */ |
| 167 | void inputBufferHide(struct InputBuffer *ib) { |
| 168 | (void)ib; // Not used var, but is conceptually part of the API. |
| 169 | terminalCleanCurrentLine(); |
| 170 | terminalCursorAtLineStart(); |
| 171 | } |
| 172 | |
| 173 | /* Show again the current line. Usually called after InputBufferHide(). */ |
| 174 | void inputBufferShow(struct InputBuffer *ib) { |
no test coverage detected