. use library function to parse memory string
[minix3.git] / lib / curses / termmisc.c
blob267ee4c98feae7f5aa538f00956d79cc09a3776e
1 #include <curses.h>
2 #include "curspriv.h"
4 /* Static variables or saving terminal modes */
6 int fixterm()
8 return(OK);
9 } /* fixterm */
11 int resetterm()
13 return(OK);
16 int saveoldterm()
18 return(OK);
19 } /* saveoldterm */
21 int saveterm()
23 return(OK);
24 } /* saveterm */
26 int baudrate()
28 return(19200);
29 } /* baudrate */
31 /****************************************************************/
32 /* Erasechar(), killchar() returns std MSDOS erase chars. */
33 /****************************************************************/
35 int erasechar()
37 return(_DCCHAR); /* character delete char */
38 } /* erasechar */
40 int killchar()
42 return(_DLCHAR); /* line delete char */
43 } /* killchar */
45 /****************************************************************/
46 /* Savetty() and resetty() saves and restores the terminal I/O */
47 /* Settings. */
48 /****************************************************************/
50 int savetty()
52 return(OK);
53 } /* savetty */
55 /****************************************************************/
56 /* Setupterm() sets up the terminal. On a PC, it is always suc- */
57 /* Cessful, and returns 1. */
58 /****************************************************************/
60 int setupterm()
62 return(1);
63 } /* setupterm */