Archive for the ‘W’ Category

trl, use_env, wunctrl – miscellaneous curses utility routines
USAGE
#include <curses.h>

char *unctrl(chtype c);
char *wunctrl(wchar_t w);
char *keyname(int c);
char *key_name(wchar_t w);
[...]

Thursday, August 27th, 2009 at 20:47 | Comments Off
Categories: T, U, W

cok, wcursyncup, wsyncdown – create curses windows
USAGE
#include <curses.h>

WINDOW *newwin(int nlines, int ncols, int begin_y,
int begin_x);
int delwin(WINDOW *win);
[...]

Thursday, August 27th, 2009 at 02:29 | Comments Off
Categories: W, c

trl, use_env, wunctrl – miscellaneous curses utility routines
USAGE
#include <curses.h>

char *unctrl(chtype c);
char *wunctrl(wchar_t w);
char *keyname(int c);
char *key_name(wchar_t w);
[...]

Thursday, August 27th, 2009 at 02:29 | Comments Off
Categories: T, U, W

window attribute control routines
USAGE
#include <curses.h>
int attroff(int attrs);
int wattroff(WINDOW *win, int attrs);
int attron(int attrs);
int wattron(WINDOW *win, int attrs);
[...]

Thursday, August 27th, 2009 at 02:23 | Comments Off
Categories: W
TOP