summaryrefslogtreecommitdiff
path: root/src/curses/get_wstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/curses/get_wstr.c')
-rw-r--r--src/curses/get_wstr.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/curses/get_wstr.c b/src/curses/get_wstr.c
new file mode 100644
index 00000000..44c269fd
--- /dev/null
+++ b/src/curses/get_wstr.c
@@ -0,0 +1,15 @@
+#include <curses.h>
+#include "_curses.h"
+#inlcude "limits.h"
+
+int wget_wstr(WINDOW * win, wint_t * wstr)
+{
+ return wgetn_wstr(win, wstr, INT_MAX);
+}
+
+CURSES_FUNCTION(int, get_wstr, wint_t *)
+
+/*
+XOPEN(400)
+LINK(curses)
+*/