Subversion Repositories HelenOS

Rev

Rev 2714 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2714 Rev 2782
1
/*
1
/*
2
 * Termios command line History and Editting for NetBSD sh (ash)
2
 * Termios command line History and Editting for NetBSD sh (ash)
3
 * Copyright (c) 1999
3
 * Copyright (c) 1999
4
 *  Main code:  Adam Rogoyski <rogoyski@cs.utexas.edu>
4
 *  Main code:  Adam Rogoyski <rogoyski@cs.utexas.edu>
5
 *  Etc:        Dave Cinege <dcinege@psychosis.com>
5
 *  Etc:        Dave Cinege <dcinege@psychosis.com>
6
 *
6
 *
7
 * You may use this code as you wish, so long as the original author(s)
7
 * You may use this code as you wish, so long as the original author(s)
8
 * are attributed in any redistributions of the source code.
8
 * are attributed in any redistributions of the source code.
9
 * This code is 'as is' with no warranty.
9
 * This code is 'as is' with no warranty.
10
 * This code may safely be consumed by a BSD or GPL license.
10
 * This code may safely be consumed by a BSD or GPL license.
11
 *
11
 *
12
 * v 0.5  19990328  Initial release
12
 * v 0.5  19990328  Initial release
13
 *
13
 *
14
 * Future plans: Simple file and path name completion. (like BASH)
14
 * Future plans: Simple file and path name completion. (like BASH)
15
 *
15
 *
16
 */
16
 */
17
 
17
 
18
void hetio_init(void);
18
void hetio_init(void);
19
int hetio_read_input(int fd);
19
int hetio_read_input(int fd);
20
void hetio_reset_term(void);
20
void hetio_reset_term(void);
21
 
21
 
22
extern int hetio_inter;
22
extern int hetio_inter;
23
 
23