#include <wchar.h>
#include "util.h"
#include "io.h"
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | BUILTIN_ERR_MISSING _( L"%ls: Expected argument\n" ) |
| Error message on missing argument. | |
| #define | BUILTIN_ERR_COMBO _( L"%ls: Invalid combination of options\n" ) |
| Error message on invalid combination of options. | |
| #define | BUILTIN_ERR_COMBO2 _( L"%ls: Invalid combination of options,\n%ls\n" ) |
| Error message on invalid combination of options. | |
| #define | BUILTIN_ERR_GLOCAL _( L"%ls: Variable scope can only be one of universal, global and local\n" ) |
| Error message on multiple scope levels for variables. | |
| #define | BUILTIN_ERR_EXPUNEXP _( L"%ls: Variable can't be both exported and unexported\n" ) |
| Error message for specifying both export and unexport to set/read. | |
| #define | BUILTIN_ERR_UNKNOWN _( L"%ls: Unknown option '%ls'\n" ) |
| Error message for unknown switch. | |
| #define | BUILTIN_ERR_VARCHAR _( L"%ls: Invalid character '%lc' in variable name. Only alphanumerical characters and underscores are valid in a variable name.\n" ) |
| Error message for invalid character in variable name. | |
| #define | BUILTIN_ERR_VARNAME_ZERO _( L"%ls: Variable name can not be the empty string\n" ) |
| Error message for invalid (empty) variable name. | |
| #define | BUILTIN_FOR_ERR_IN _( L"%ls: Second argument must be 'in'\n" ) |
| Error message when second argument to for isn't 'in'. | |
| #define | BUILTIN_FOR_ERR_COUNT _( L"%ls: Expected at least two arguments, got %d\n") |
| Error message for insufficient number of arguments. | |
| #define | BUILTIN_FOR_ERR_NAME _( L"%ls: '%ls' is not a valid variable name\n" ) |
| #define | BUILTIN_ERR_TOO_MANY_ARGUMENTS _( L"%ls: Too many arguments\n" ) |
| Error message when too many arguments are supplied to a builtin. | |
| #define | BUILTIN_END_BLOCK_MISMATCH _( L"%ls: Block mismatch: '%ls' vs. '%ls'\n" ) |
| Error message when block types mismatch in the end builtin, e.g. | |
| #define | BUILTIN_END_BLOCK_UNKNOWN _( L"%ls: Unknown block type '%ls'\n" ) |
| Error message for unknown block type in the end builtin, e.g. | |
| #define | BUILTIN_ERR_NOT_NUMBER _( L"%ls: Argument '%ls' is not a number\n" ) |
Enumerations | |
| enum | { COMMAND_NOT_BUILTIN, BUILTIN_REGULAR, BUILTIN_FUNCTION } |
Functions | |
| void | builtin_init () |
| Initialize builtin data. | |
| void | builtin_destroy () |
| Destroy builtin data. | |
| int | builtin_exists (wchar_t *cmd) |
| Is there a builtin command with the given name? | |
| int | builtin_run (wchar_t **argv, io_data_t *io) |
| Execute a builtin command. | |
| void | builtin_get_names (array_list_t *list) |
| Insert all builtin names into l. | |
| void | builtin_push_io (int stdin_fd) |
| Pushes a new set of input/output to the stack. | |
| void | builtin_pop_io () |
| Pops a set of input/output from the stack. | |
| const wchar_t * | builtin_get_desc (const wchar_t *b) |
| Return a one-line description of the specified builtin. | |
| const wchar_t * | builtin_complete_get_temporary_buffer () |
| Slightly kludgy function used with 'complete -C' in order to make the commandline builtin operate on the string to complete instead of operating on whatever is to be completed. | |
| wchar_t * | builtin_help_get (const wchar_t *cmd) |
| Run the __fish_print_help function to obtain the help information for the specified command. | |
Variables | |
| string_buffer_t * | sb_out |
| Stringbuffer used to represent standard output. | |
| string_buffer_t * | sb_err |
| Stringbuffer used to represent standard error. | |
| int | builtin_out_redirect |
| Kludge. | |
| int | builtin_err_redirect |
| Kludge. | |
|
|
Error message when block types mismatch in the end builtin, e.g. 'begin; end for' |
|
|
Error message for unknown block type in the end builtin, e.g. 'begin; end beggin' |
|
|
Insert all builtin names into l. These are not copies of the strings and should not be freed after use. |
|
|
Run the __fish_print_help function to obtain the help information for the specified command. The resulting string will be valid until the next time this function is called, and must never be free'd manually. |
|
|
Pops a set of input/output from the stack. The output string_buffer_ts are destroued, but the input file is not closed. |
|
|
Pushes a new set of input/output to the stack. The new stdin is supplied, a new set of output string_buffer_ts is created. |
|
||||||||||||
|
Execute a builtin command.
|
|
|
Kludge. Tells builtins if error is to screen |
|
|
Kludge. Tells builtins if output is to screen |
1.4.4