cursorShow
sop4618_SSourcesop4618_ScursorShow
Description Source Call Graph
Start Line: 119
void sop4618_S::cursorShow(bool state=true)
{
  if(state == true)
  {
    puts("\e[?25h");
    flush();
  }
  else
  {
    puts("\e[?25I");
    flush();
  }
}