aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-24 06:40:14 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-24 06:40:14 +1000
commit29c488c6dc4344015a6711efdd9a618813a82249 (patch)
treeb7b8f3eee14261ddf2cd7546aa2f7102f8eb4ff0 /builtin.c
parent14ae10daf7de7a14335047d2cd52bcfed9352e36 (diff)
Fixes to api documentation, added .PHONY to makefile actions, made a few private functions static
darcs-hash:20060123204014-ac50b-b9d2a10c7f00945b5d9d244cb3b8c1489fe280de.gz
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/builtin.c b/builtin.c
index 7be7a48f..ac85f538 100644
--- a/builtin.c
+++ b/builtin.c
@@ -646,6 +646,10 @@ static int builtin_exec( wchar_t **argv )
return 1;
}
+/**
+ Print the definitions of the given function to sb_out
+ stringbuffer. Used by the functions builtin.
+*/
static void functions_def( wchar_t *name )
{
const wchar_t *desc = function_get_desc( name );
@@ -2260,6 +2264,9 @@ static int cpu_use( job_t *j )
}
#endif
+/**
+ Print information about the specified job
+*/
static void builtin_jobs_print( job_t *j, int mode, int header )
{
process_t *p;