]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/test_instr.c
ncurses 5.6 - patch 20070630
[ncurses.git] / test / test_instr.c
diff --git a/test/test_instr.c b/test/test_instr.c
new file mode 100644 (file)
index 0000000..e006693
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * $Id: test_instr.c,v 1.1 2007/06/30 16:51:44 tom Exp $
+ *
+ * Demonstrate the instr functions from the curses library.
+
+       int instr(char *str);
+       int innstr(char *str, int n);
+       int winstr(WINDOW *win, char *str);
+       int winnstr(WINDOW *win, char *str, int n);
+       int mvinstr(int y, int x, char *str);
+       int mvinnstr(int y, int x, char *str, int n);
+       int mvwinstr(WINDOW *win, int y, int x, char *str);
+       int mvwinnstr(WINDOW *win, int y, int x, char *str, int n);
+ */
+
+#include <test.priv.h>
+
+int
+main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
+{
+    printf("Not implemented - test-driver for curses instr() functions\n");
+    return EXIT_SUCCESS;
+}