home *** CD-ROM | disk | FTP | other *** search
- NAME
- waddstr() addstr() mvaddstr() mvwaddstr() - insert a string
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int waddstr(win, str)
- WINDOW *win;
- char *str;
-
- int addstr(str)
- char *str;
-
- int mvaddstr(y,x,str)
- int y;
- int x;
- char *str;
-
- int mvwaddstr(win,y,x,str)
- WINDOW *win;
- int y;
- int x;
- char *str;
-
- DESCRIPTION
- waddstr() inserts string 'str' at the current cursor posi-
- tion in window 'win', and takes any actions as dictated by
- the characters.
-
- addstr() inserts string 'str' at the current cursor posi-
- tion in stdscr, and takes any actions as dictated by the
- characters.
-
- mvaddstr() move to a new position in stdscr, then inserts
- string 'str' at the new position, taking any actions as dic-
- tated by the characters.
-
- mvwaddstr() move to a new position in window 'win', then
- inserts string 'str' at the new position, taking any actions
- as dictated by the characters.
-
- EXAMPLES
-
- SEE ALSO
- waddch(); wmove()
-
- BUGS
-