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

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -