Lines Matching full:for
1 Here is an overview of the source code organization for ksh93.
5 The directory include contains header files for ksh93.
10 The directory data contains readonly data files for ksh93.
11 The man pages for built-ins are in builtins.c rather
17 The directory edit contains the code for command line
27 The directory bltins contains code for most of the built-in
30 The directory sh contains most of the code for ksh93.
37 where shell_path is an absolute pathname for the shell to
51 1. argnod.h contains the type definitions for command
52 nodes, io nodes, argument nodes, and for positional
53 parameters.a It defines the prototypes for
55 2. builtins.h contains prototypes for builtins as well
58 It also contains prototypes for many of the strings.
59 3. defs.h is the catch all for all definitions that
66 5. env.h contains an alternative interfaces for creating and
68 6. fault.h contains prototypes for signal related
70 7. fcin.h contains macro and function definitions for
84 14. path.h contains the interface for pathname processing
86 15. shell.h is the public interface for shell functions
89 interfaces for lexical analysis.
91 for each of the parse nodes and flags for the attributes.
92 18. shtable.h contains some interfaces and functions for
98 21. test.h contains the definitions for the test and [[...]]
100 22. timeout.h contains the define constant for the maximum
103 24. variables.h contains symbolic constants for the built-in
105 25. version.h contains the version string for this release.
108 1. args.c contains functions for parsing shell options
109 and for processing positional parameters.
110 2. arith.c contains callback functions for the streval.c
112 3. array.c contains the code for indexed and associative
116 5. defs.c contains the data definitions for global symbols.
121 8. expand.c contains code for file name expansion and
123 9. fault.c contains code for signal processing, trap
125 10. fcin.c contains code for reading and writing a character
128 for get and set functions for built-in variables.
129 12. io.o contains code for redirections and managing file
131 13. jobs.c contains the code for job management.
132 14. lex.c contains the code for the lexical analyzer.
133 15. macro.c contains code for the $ macro expansions, including
141 19. nvtree.c contains code for compound variables and for
145 21. parse.c contains the code for the shell parser.
146 22. path.c contains the code for pathname lookup and
163 30. timers.c contains code for multiple event timeouts.
164 31. trestore contains the code for restoring the parse
170 shell is waiting for input or for process completion.
173 1. completion.c contains code for command and file generation and
175 2. edit.c contains common editing and terminal code for vi and
177 3. emacs.c contains code for the emacs editor.
178 4. hexpand.c contains code for C-shell style history expansions.
179 5. history.c contains code for creating managing the history file.
180 6. vi.c contains the code for the vi editor.