#include void main() { char line[4096]; GetLine(line); // get current line int tmp_ins_mode = InsertMode; // save insert mode InsertMode = TRUE; // set insert mode to TRUE int col = CurCol; // save cursor position Eol(); Cr(); // insert an empty line CurCol = 1; Text(line); // put text InsertMode = tmp_ins_mode; // restore insert mode CurCol = col; // restore cursor position }