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
696 B
C
24 lines
696 B
C
/*
|
|
* $Id: test_instr.c,v 1.1 2007/06/30 16:51:44 tom Exp $
|
|
*
|
|
* Demonstrate the instr functions from the curses library.
|
|
|
|
int instr(char *str);
|
|
int innstr(char *str, int n);
|
|
int winstr(WINDOW *win, char *str);
|
|
int winnstr(WINDOW *win, char *str, int n);
|
|
int mvinstr(int y, int x, char *str);
|
|
int mvinnstr(int y, int x, char *str, int n);
|
|
int mvwinstr(WINDOW *win, int y, int x, char *str);
|
|
int mvwinnstr(WINDOW *win, 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 instr() functions\n");
|
|
return EXIT_SUCCESS;
|
|
}
|