mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2024-12-21 07:39:06 +08:00
eb312e0bb9
+ add "widec" row to _tracedump() output to help diagnose remaining problems with multi-column characters. + partial fix for refresh of window on top of multi-column characters which are partly overwritten (report by Sadrul H Chowdhury). + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case multi-column extension bits are passed there. + add setlocale() call to demo_panels.c, needed for wide-characters. + add some output flags to _nc_trace_ttymode to help diagnose a bug report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
24 lines
704 B
C
24 lines
704 B
C
/*
|
|
* $Id: test_getstr.c,v 1.1 2007/06/30 16:51:28 tom Exp $
|
|
*
|
|
* Demonstrate the getstr functions from the curses library.
|
|
|
|
int getstr(char *str);
|
|
int getnstr(char *str, int n);
|
|
int wgetstr(WINDOW *win, char *str);
|
|
int wgetnstr(WINDOW *win, char *str, int n);
|
|
int mvgetstr(int y, int x, char *str);
|
|
int mvwgetstr(WINDOW *win, int y, int x, char *str);
|
|
int mvgetnstr(int y, int x, char *str, int n);
|
|
int mvwgetnstr(WINDOW *, int y, int x, char *str, int n);
|
|
*/
|
|
|
|
#include <test.priv.h>
|
|
|
|
int
|
|
main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
|
|
{
|
|
printf("Not implemented - test-driver for curses getstr() functions\n");
|
|
return EXIT_SUCCESS;
|
|
}
|