aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
commit8d2f107d61a8b0e099ab9a59b8a32c236da5a5fc (patch)
tree89f718ab74f8400332534aee237c6f925348f05c /builtin.h
parent3f16ace6784caab54fb054836ee93902e9701913 (diff)
Some changes to migrate towards C++ and a multithreaded model
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin.h b/builtin.h
index 876c5d38..245fe16c 100644
--- a/builtin.h
+++ b/builtin.h
@@ -64,7 +64,7 @@ enum
#define BUILTIN_FOR_ERR_IN _( L"%ls: Second argument must be 'in'\n" )
/**
- Error message for insufficient number of arguments
+ Error message for insufficient number of arguments
*/
#define BUILTIN_FOR_ERR_COUNT _( L"%ls: Expected at least two arguments, got %d\n")
@@ -108,7 +108,7 @@ extern int builtin_err_redirect;
/**
- Initialize builtin data.
+ Initialize builtin data.
*/
void builtin_init();
@@ -123,11 +123,11 @@ void builtin_destroy();
int builtin_exists( wchar_t *cmd );
/**
- Execute a builtin command
+ Execute a builtin command
- \param argv Array containing the command and parameters
+ \param argv Array containing the command and parameters
of the builtin. The list is terminated by a
- null pointer. This syntax resembles the syntax
+ null pointer. This syntax resembles the syntax
for exec.
\param io the io redirections to perform on this builtin.