30 lines
514 B
C
30 lines
514 B
C
/*
|
|
* 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;
|
|
}
|
|
/* --------------------------------------------------------------------- */
|