aboutsummaryrefslogtreecommitdiff
path: root/toys.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-04-14 21:43:24 -0500
committerRob Landley <rob@landley.net>2012-04-14 21:43:24 -0500
commit43e9d331c8055dff7e243bd19d2d06df826d6f38 (patch)
treeae1a3d4db8e9fc3570df241ec12b6c7dba6ec1ca /toys.h
parentea5c68a5b09e1b3c58f1a874acf52848834d8014 (diff)
downloadtoybox-43e9d331c8055dff7e243bd19d2d06df826d6f38.tar.gz
Comment and whitespace changes.
Diffstat (limited to 'toys.h')
-rw-r--r--toys.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/toys.h b/toys.h
index 0e0117e4..814db1ea 100644
--- a/toys.h
+++ b/toys.h
@@ -61,7 +61,7 @@ struct toy_list *toy_find(char *name);
void toy_init(struct toy_list *which, char *argv[]);
void toy_exec(char *argv[]);
-// Flags describing applet behavior.
+// Flags describing command behavior.
#define TOYFLAG_USR (1<<0)
#define TOYFLAG_BIN (1<<1)
@@ -71,10 +71,10 @@ void toy_exec(char *argv[]);
// This is a shell built-in function, running in the same process context.
#define TOYFLAG_NOFORK (1<<4)
-// Start applet with a umask of 0 (saves old umask in this.old_umask)
+// Start command with a umask of 0 (saves old umask in this.old_umask)
#define TOYFLAG_UMASK (1<<5)
-// This applet runs as root.
+// This command runs as root.
#define TOYFLAG_STAYROOT (1<<6)
#define TOYFLAG_NEEDROOT (1<<7)
#define TOYFLAG_ROOTONLY (TOYFLAG_STAYROOT|TOYFLAG_NEEDROOT)
@@ -82,13 +82,13 @@ void toy_exec(char *argv[]);
// Array of available applets
extern struct toy_list {
- char *name;
- void (*toy_main)(void);
- char *options;
- int flags;
+ char *name;
+ void (*toy_main)(void);
+ char *options;
+ int flags;
} toy_list[];
-// Global context shared by all applets.
+// Global context shared by all commands.
extern struct toy_context {
struct toy_list *which; // Which entry in toy_list is this one?
@@ -101,7 +101,7 @@ extern struct toy_context {
int old_umask; // Old umask preserved by TOYFLAG_UMASK
} toys;
-// One big temporary buffer, for use by applets (not library functions).
+// One big temporary buffer, for use by commands (not library functions).
extern char toybuf[4096];