src.desc revision 59244
1139749SimpEditor functions (ed.*c)
253855Simped.chared.c:	Editor basic function implementation. (Motion/Search etc.)
353855Simped.defns.c:	Editor command tables.
453855Simped.init.c:	Editor initialization. Tty/signal setup.
553855Simped.term.c:	Tty driver dependent initialization portion.
653855Simped.inputl.c:	Editor input, editor command parser, and dispatcher.
753855Simped.refresh.c:	Editor refreshing. How to change the old line to the current.
853855Simped.screen.c:	Termcap related functions.
953855Simped.xmap.c:	Key macro handling.
1053855Simp
1153855Simpglob.c:		The 4.4BSD globbing library function.
1253855Simp
1353855SimpShell functions (sh*.c). All these files are from csh.
1453855Simpsh.c:		Initialization, command loop and script handling.
1553855Simpsh.char.c:	Character classification tables.
1653855Simpsh.dir.c:	Directory handling (cd, pushd, popd, dirs). Initialization
1753855Simp		and symbolic link resolution.
1853855Simpsh.dol.c:	Input line processor. Dollar/History expansion.
1953855Simpsh.err.c:	Error handling routines and table.
2053855Simpsh.exec.c:	Command execution (searching and executing commands)
2153855Simp		also which builtin.
2253855Simpsh.exp.c:	Expression evaluation.
2353855Simpsh.file.c:	Old csh file completion. Not used in tcsh.
2453855Simpsh.func.c:	Csh builtin functions.
2553855Simpsh.glob.c:	Wildcard matching. Also backquote, brace and tilde evaluation.
2653855Simpsh.hist.c:	History book-keeping.
2753855Simpsh.init.c:	Signal and builtin tables.
2853855Simpsh.lex.c:	Lexical analyzer.
2959272Simpsh.misc.c:	General purpose utilities.
3059272Simpsh.parse.c:	Parser. Not really a parser. Recognizes sequences of tokens
3153855Simp		as builtins.
3253855Simpsh.print.c:	Primitive output (basic character output).
3353855Simpsh.proc.c:	Job handling. Adds new children to the job list.
3453855Simp		Catches dead children and removes them from the job list.
3553855Simp		Builtins for stopping/killing/ and moving jobs to the background
3653855Simp		foreground.
3753855Simpsh.sem.c:	Job spawning (nice and time are handled here too) and I/O
3855500Simp		redirection.
3953855Simpsh.set.c:	Variable setting.
4053855Simpsh.time.c:	Time keeping and reporting.
4153855Simp
4253855SimpTcsh additions (tc*.c)
4355500Simptc.alloc.c:	Malloc/Free
4453855Simptc.bind.c:	Key binding user access functions.
4553855Simptc.const.c:	Short String constants.
4653855Simptc.disc.c:	Line discipline set/clear.
47tc.func.c:	Tcsh additional builtins.
48tc.os.c:	OS dependencies/system call emulations.
49tc.printf.c:	Stdio like printf using the routines in sh.print.c
50tc.prompt.c:	Prompt expansion.
51tc.sched.c:	Scheduling commands handling.
52tc.sig.c:	Signal emulation for SVR2, SVR1 and V5.
53tc.str.c:	<string.h> for short strings.
54tc.vers.c:	HOSTTYPE and $version
55tc.who.c:	Watch variable handling.
56
57Spelling, listing, and completion (tw*.c)
58tw.help.c:	Display help for a command by catting a file.
59tw.init.c:	Initialization and some utilities.
60tw.parse.c:	All the listing and completion. Tries to tokenize the line
61		and figure out where the word(s) started and if they were
62		commands or not. Then it applies the requested function to
63		the word fragment.
64tw.spell.c:	String spelling correction.
65tw.comp.c:	File completion builtin
66
67OS/Dependent files
68mi.termios.c:	Minix termios emulation
69mi.varargs.h:	Minix varargs
70mi.wait.h:	Minix wait.
71ma.setp.c:	MACH's setpath() library function
72atp.termcap.c:  Termcap routines for vmsposix 
73