home *** CD-ROM | disk | FTP | other *** search
- NAME
- newline() - line advance
- waddch() addch() mvaddch() mvwaddch() - insert a character
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- static short newline(win, lin)
- WINDOW *win;
- short lin;
-
- int waddch(win, c)
- register WINDOW *win;
- char c;
-
- int addch(c)
- char c;
-
- int mvaddch(y,x,c)
- int x;
- int y;
- char c;
-
- int mvwaddch(win,y,x,c)
- WINDOW *win;
- int x;
- int y;
- char c;
-
- DESCRIPTION
- newline() does line advance and returns the new cursor line.
- If error, return -1.
-
- waddch() inserts character 'c' at the current cursor posi-
- tion in window 'win', and takes any actions as dictated by
- the character.
-
- addch() inserts character 'c' at the current cursor posi-
- tion in stdscr, and takes any actions as dictated by the
- character.
-
- mvaddch() moves to position in stdscr, then inserts charac-
- ter 'c' at that point, and takes any actions as dictated by
- the character.
-
- mvwaddch() moves to position in window 'win', then inserts
- character 'c' at that point in the window, and takes any
- actions as dictated by the character.
-
- EXAMPLES
-
- SEE ALSO
- scroll(), switch(), waddch(), newline(), wmove()
-
- BUGS
-