blob: 9253d6f28e6256eabc3479b7cdc7ea4e8d7fe4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <curses.h>
#include "_curses.h"
int winsstr(WINDOW * win, const char * str)
{
return ERR;
}
CURSES_FUNCTION(int, insstr, const char *)
/*
XOPEN(400)
LINK(curses)
*/
|