aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-05-26 21:38:11 +1000
committerGravatar axel <axel@liljencrantz.se>2006-05-26 21:38:11 +1000
commitd6bf8796758a51c1e8f80fd3cc954a3923f87d01 (patch)
tree462773d4c9b31a365510a781c6800d9c3ec2c102 /builtin.h
parent051f557e8fa2fc7a39e4ae711ca39f2bdf1fc37b (diff)
Move jobs builtin to its own file
darcs-hash:20060526113811-ac50b-9c0ed1aa26cd2f247978e406bea86e8c36d73710.gz
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/builtin.h b/builtin.h
index 3249f978..fbfd22fd 100644
--- a/builtin.h
+++ b/builtin.h
@@ -139,33 +139,42 @@ const wchar_t *builtin_get_desc( const wchar_t *b );
int builtin_count_args( wchar_t **argv );
/**
- Print help for the specified builtin. If \c b is sb_err, also print the line information
+ Print help for the specified builtin. If \c b is sb_err, also print
+ the line information
*/
void builtin_print_help( wchar_t *cmd, string_buffer_t *b );
/**
- The set builtin, used for setting variables. Defined in builtin_set.c.
+ The set builtin, used for setting variables. Defined in
+ builtin_set.c.
*/
int builtin_set(wchar_t **argv);
/**
- The commandline builtin, used for setting and getting the contents of the commandline. Defined in builtin_commandline.c.
+ The commandline builtin, used for setting and getting the contents
+ of the commandline. Defined in builtin_commandline.c.
*/
int builtin_commandline(wchar_t **argv);
/**
- The ulimit builtin, used for setting resource limits. Defined in builtin_ulimit.c.
+ The ulimit builtin, used for setting resource limits. Defined in
+ builtin_ulimit.c.
*/
int builtin_ulimit(wchar_t **argv);
/**
The complete builtin. Used for specifying programmable
tab-completions. Calls the functions in complete.c for any heavy
- lifting.
+ lifting. Defined in builtin_complete.c
*/
int builtin_complete(wchar_t **argv);
+/**
+ The jobs builtin. Used fopr printing running jobs. Defined in builtin_jobs.c.
+*/
+int builtin_jobs(wchar_t **argv);
+
const wchar_t *builtin_complete_get_temporary_buffer();
/**