]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/test_instr.c
ncurses 5.6 - patch 20070714
[ncurses.git] / test / test_instr.c
1 /*
2  * $Id: test_instr.c,v 1.1 2007/06/30 16:51:44 tom Exp $
3  *
4  * Demonstrate the instr functions from the curses library.
5
6        int instr(char *str);
7        int innstr(char *str, int n);
8        int winstr(WINDOW *win, char *str);
9        int winnstr(WINDOW *win, char *str, int n);
10        int mvinstr(int y, int x, char *str);
11        int mvinnstr(int y, int x, char *str, int n);
12        int mvwinstr(WINDOW *win, int y, int x, char *str);
13        int mvwinnstr(WINDOW *win, int y, int x, char *str, int n);
14  */
15
16 #include <test.priv.h>
17
18 int
19 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
20 {
21     printf("Not implemented - test-driver for curses instr() functions\n");
22     return EXIT_SUCCESS;
23 }