remove stuff

This commit is contained in:
Digital Studium 2024-04-11 23:57:49 +03:00
parent 4131bf0a6a
commit e2607f493c
2 changed files with 0 additions and 20 deletions

BIN
a.out

Binary file not shown.

20
c_kls.c
View File

@ -1,20 +0,0 @@
#include <ncurses.h>
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;
}