Module Name: src
Committed By: sevan
Date: Sat Jul 27 16:00:02 UTC 2019
Modified Files:
src/lib/libcurses: curses_addstr.3
Log Message:
list the wide variant of functions.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libcurses/curses_addstr.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libcurses/curses_addstr.3
diff -u src/lib/libcurses/curses_addstr.3:1.4 src/lib/libcurses/curses_addstr.3:1.5
--- src/lib/libcurses/curses_addstr.3:1.4 Wed May 21 21:22:15 2003
+++ src/lib/libcurses/curses_addstr.3 Sat Jul 27 16:00:02 2019
@@ -1,4 +1,4 @@
-.\" $NetBSD: curses_addstr.3,v 1.4 2003/05/21 21:22:15 jdc Exp $
+.\" $NetBSD: curses_addstr.3,v 1.5 2019/07/27 16:00:02 sevan Exp $
.\"
.\" Copyright (c) 2002
.\" Brett Lymn ([email protected], [email protected])
@@ -30,19 +30,27 @@
.\" SUCH DAMAGE.
.\"
.\"
-.Dd May 21, 2003
+.Dd July 27, 2019
.Dt CURSES_ADDSTR 3
.Os
.Sh NAME
.Nm curses_addstr ,
.Nm addstr ,
+.Nm addwstr ,
.Nm waddstr ,
+.Nm waddwstr ,
.Nm addnstr ,
+.Nm addnwstr ,
.Nm waddnstr ,
+.Nm waddnwstr ,
.Nm mvaddstr ,
+.Nm mvaddwstr ,
.Nm mvwaddstr ,
+.Nm mvwaddwstr ,
.Nm mvaddnstr ,
-.Nm mvwaddnstr
+.Nm mvaddnwstr ,
+.Nm mvwaddnstr ,
+.Nm mvwaddnwstr
.Nd curses add character strings to windows routines
.Sh LIBRARY
.Lb libcurses
@@ -51,19 +59,35 @@
.Ft int
.Fn addstr "const char *string"
.Ft int
+.Fn addwstr "const wchar_t *string"
+.Ft int
.Fn waddstr "WINDOW *win" "const char *string"
.Ft int
+.Fn waddwstr ""WINDOW *win" "const wchar_t *string"
+.Ft int
.Fn mvaddstr "int y" "int x" "const char *string"
.Ft int
+.Fn mvaddwstr "int y" "int x" "const wchar_t *string"
+.Ft int
.Fn mvwaddstr "WINDOW *win" "int y" "int x" "const char *string"
.Ft int
+.Fn mvwaddwstr "(WINDOW *win" "int y" "int x" "const wchar_t *string" "int len"
+.Ft int
.Fn addnstr "const char *string" "int len"
.Ft int
+.Fn addnwstr "const wchar_t *string" "int len"
+.Ft int
.Fn waddnstr "WINDOW *win" "const char *string" "int len"
.Ft int
+.Fn waddnwstr "WINDOW *win" "const wchar_t *string" "int len"
+.Ft int
.Fn mvaddnstr "int y" "int x" "const char *string" "int len"
.Ft int
+.Fn mvaddnwstr "int y" "int x" "const wchar_t *string" "int len"
+.Ft int
.Fn mvwaddnstr "WINDOW *win" "int y" "int x" "const char *string" "int len"
+.Ft int
+.Fn mvwaddnwstr "WINDOW *win" "int y" "int x" "const wchar_t *string" "int len"
.Sh DESCRIPTION
These functions add character strings to
.Dv stdscr