Subversion Repositories HelenOS

Rev

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

Rev 3346 Rev 3813
1
 
1
 
2
Written by Tim Post <echo@echoreply.us> to serve as a primitive shell
2
Written by Tim Post <echo@echoreply.us> to serve as a primitive shell
3
for HelenOS, or as a template to make a command line interface that
3
for HelenOS, or as a template to make a command line interface that
4
offers shell like creature comforts.
4
offers shell like creature comforts.
5
 
5
 
6
This program was mostly written from scratch, some existing code was
6
This program was mostly written from scratch, some existing code was
7
used from other various free software projects:
7
used from other various free software projects:
8
 
8
 
9
* Based on the HelenOS testing sub-system written by Martin Decky
9
* Based on the HelenOS testing sub-system written by Martin Decky
10
 
10
 
11
* cli_strtok() and cli_strtok_r() (util.c) were adapted from the FreeBSD
-
 
12
  strtok() and strtok_r() functions written by Wes Peters.
-
 
13
 
-
 
14
* read_line() (input.c) was written by Jiri Svoboda
11
* read_line() (input.c) was written by Jiri Svoboda
15
 
12
 
16
Individual author copyrights are listed in the headers of each file.
13
Individual author copyrights are listed in the headers of each file.
17
 
14
 
18
 
15