开发者

Why is ncurses not displaying text?

ncurses_init();

ncurses_addstr(0, 0, "test");
ncurses_refresh();
ncurses_getch();
ncurses_end();

This should be displaying "test" at the top left, but it isn't. Any开发者_高级运维 idea why?

PHP 5.1.6 CentOS 5.5

Got ncurses through yum install ncurses

it recognizes the ncurses functions, so I assume it should be working


UH OH! Looks like someone forgot to read the docs!

ncurses_mvaddstr(0, 0, "test");


You need to change ncurses_addstr to ncurses_mvaddstr

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜