aboutsummaryrefslogtreecommitdiff
path: root/toys/toylist.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-10-19 19:12:48 -0500
committerRob Landley <rob@landley.net>2007-10-19 19:12:48 -0500
commit503d0f5b52fe2eafd6523ce785d6c9f73b46329b (patch)
tree56cb31659ccba53ebb86f55d96c47e361bd1c043 /toys/toylist.h
parent9abf13622b76eec96f5846298bbf012cdb8bc678 (diff)
downloadtoybox-503d0f5b52fe2eafd6523ce785d6c9f73b46329b.tar.gz
Get toysh.c to start using the option parsing logic, and some minor cleanup.
Diffstat (limited to 'toys/toylist.h')
-rw-r--r--toys/toylist.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/toys/toylist.h b/toys/toylist.h
index deeb6204..3c3b316a 100644
--- a/toys/toylist.h
+++ b/toys/toylist.h
@@ -18,6 +18,9 @@ struct df_data {
long units;
};
+// Still to go: "E:jJ:L:m:O:"
+#define MKE2FS_OPTSTRING "<1>2g:Fnqm#N#i#b#"
+
struct mke2fs_data {
// Command line arguments.
long blocksize;
@@ -55,12 +58,16 @@ struct touch_data {
long length;
};
-// "E:jJ:L:m:O:"
-#define MKE2FS_OPTSTRING "<1>2Fnqm#N#i#b#"
+struct toysh_data {
+ char *command;
+};
extern union toy_union {
struct df_data df;
struct mke2fs_data mke2fs;
+ struct sleep_data sleep;
+ struct touch_data touch;
+ struct toysh_data toysh;
} toy;
#define TOYFLAG_USR (1<<0)