c++ - Check char at current/given position in PDCurses/NCurses -
is there way check char @ given position in console window? example if want check if there's asterisk (*) @ position (10, 12), how do that? or if use move(10, 12);, how check char @ current cursor position? i'm using pdcurses.
the inch family of functions should that:
chtype inch(void); chtype winch(window *win); chtype mvinch(int y, int x); chtype mvwinch(window *win, int y, int x);
Comments
Post a Comment