ncurses - 输出到文本文件

时间:2014-04-13 15:49:07

标签: c++ file ncurses

我使用的是ncurses库。是否可以将输出打印到纯文本文件而不是终端?

我尝试使用newterm函数(在C ++中)。 a.txt是输出文件

#include <curses.h>
int main()
{   
    FILE * o = fopen("a.txt", "w");
    FILE * i = fopen("b.txt", "r");
    SCREEN * scr = newterm(NULL, o, i);

    set_term(scr);

    mvaddch(5, 5, '#'); 

    refresh();
    endwin();

    return 0;
}

我应该如何编辑代码/我应该使用哪些功能才能使用?

0 个答案:

没有答案