1 /* <ttyent.h> is used by getttyent(3). Author: Kees J. Bot
12 char *ty_name
; /* Name of the terminal device. */
13 char *ty_type
; /* Terminal type name (termcap(3)). */
14 char **ty_getty
; /* Program to run, normally getty. */
15 char **ty_init
; /* Initialization command, normally stty. */
18 _PROTOTYPE( struct ttyent
*getttyent
, (void) );
19 _PROTOTYPE( struct ttyent
*getttynam
, (const char *_name
) );
20 _PROTOTYPE( int setttyent
, (void) );
21 _PROTOTYPE( void endttyent
, (void) );
23 #endif /* _TTYENT_H */