* Update configure script to remove the search for a linking tcl
[alpine.git] / pico / osdep / tty.h
blobca0a7570573205277f723ebcdea4882ba2c4d8e1
1 /*
2 * $Id: tty.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006 University of Washington
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * ========================================================================
17 #ifndef PICO_OSDEP_TTY_INCLUDED
18 #define PICO_OSDEP_TTY_INCLUDED
21 #include <general.h>
24 /* exported prototypes */
25 int ttopen(void);
26 int ttclose(void);
27 int ttflush(void);
28 void ttresize(void);
29 #ifndef _WINDOWS
30 int ttgetc(int, int (*recorder)(int), void (*bail_handler)(void));
31 int simple_ttgetc(int (*recorder)(int), void (*bail_handler)(void));
32 int ttputc(UCS);
33 void ttgetwinsz(int *, int *);
34 #endif /* !_WINDOWS */
36 #endif /* PICO_OSDEP_TTY_INCLUDED */