diff --git a/a.out b/a.out deleted file mode 100755 index 3e2a6d9..0000000 Binary files a/a.out and /dev/null differ diff --git a/c_kls.c b/c_kls.c deleted file mode 100644 index c7dec08..0000000 --- a/c_kls.c +++ /dev/null @@ -1,20 +0,0 @@ -#include - -int main() -{ - initscr(); /* Start curses mode */ - printw("Hello World !!!\n"); /* Print Hello World */ - refresh(); /* Print it on to the real screen */ - def_shell_mode(); /* Save the tty modes */ - endwin(); /* End curses mode temporarily */ - system("vim"); /* Do whatever you like in cooked mode */ - reset_shell_mode(); /* Return to the previous tty mode*/ - /* stored by def_prog_mode() */ - refresh(); /* Do refresh() to restore the */ - /* Screen contents */ - printw("Another String\n"); /* Back to curses use the full */ - refresh(); /* capabilities of curses */ - endwin(); /* End curses mode */ - - return 0; -}