#include <ncurses.h> int main(void) { WINDOW *wp; initscr(); wp = newwin(10, 10, 10, 10); box(wp, 0, 0); wprintw(wp, "foo"); wrefresh(wp); ...
確定! 回上一頁