1/* exp_win.h - window support
2
3Written by: Don Libes, NIST, 10/25/93
4
5This file is in the public domain.  However, the author and NIST
6would appreciate credit if you use this file or parts of it.
7*/
8
9#include <tcl.h> /* For _ANSI_ARGS_ */
10
11int exp_window_size_set();
12int exp_window_size_get();
13
14void  exp_win_rows_set    _ANSI_ARGS_ ((char* rows));
15char* exp_win_rows_get    _ANSI_ARGS_ ((void));
16void  exp_win_columns_set _ANSI_ARGS_ ((char* columns));
17char* exp_win_columns_get _ANSI_ARGS_ ((void));
18
19void  exp_win2_rows_set    _ANSI_ARGS_ ((int fd, char* rows));
20char* exp_win2_rows_get    _ANSI_ARGS_ ((int fd));
21void  exp_win2_columns_set _ANSI_ARGS_ ((int fd, char* columns));
22char* exp_win2_columns_get _ANSI_ARGS_ ((int fd));
23