11 lines
199 B
C++
11 lines
199 B
C++
#ifndef _H_CX_IO_SHELL
|
|
#define _H_CX_IO_SHELL
|
|
|
|
#include <cx/std.hpp>
|
|
|
|
namespace shell {
|
|
void clear();
|
|
void move_cursor(size_t row, size_t col);
|
|
} // namespace shell
|
|
|
|
#endif // !_H_CX_IO_SHELL
|