NcLooper/ui/ncfuncs.c

30 lines
514 B
C
Raw Normal View History

2019-10-30 05:31:38 +01:00
/*
* NcLooper--- interface curses, fonctions de base
*/
#include <curses.h>
/* --------------------------------------------------------------------- */
int init_ecran(char *txt)
{
initscr();
standout();
border('o', 'o', 'o', 'o', 'X', 'X', 'X', 'X');
standend();
mvaddstr(1, 5, txt);
refresh();
return -1;
}
/* --------------------------------------------------------------------- */
int fin_ecran(void)
{
endwin();
return 0;
}
/* --------------------------------------------------------------------- */