From 67991cf824f8df27e74c92d754fb507681c69ce6 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 14 Feb 2001 21:23:06 +0000 Subject: This patch, put together by Manuel Novoa III, is a merge of work done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. --- busybox.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'busybox.h') diff --git a/busybox.h b/busybox.h index 39580b548..aef537b2b 100644 --- a/busybox.h +++ b/busybox.h @@ -72,7 +72,7 @@ struct BB_applet { const char* name; int (*main)(int argc, char** argv); enum Location location; - const char* usage; + int usage_index; }; /* From busybox.c */ extern const struct BB_applet applets[]; @@ -87,9 +87,15 @@ extern const struct BB_applet applets[]; #include "applets.h" #undef PROTOTYPES +#define APPLET_ENUM +enum APPLET_INDEX_NUMBERS { +#include "applets.h" +}; +#undef APPLET_ENUM + extern const char *applet_name; -extern void usage(const char *usage) __attribute__ ((noreturn)); +extern void show_usage(void) __attribute__ ((noreturn)); extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); @@ -153,6 +159,7 @@ extern FILE *wfopen(const char *path, const char *mode); extern FILE *xfopen(const char *path, const char *mode); extern void chomp(char *s); extern struct BB_applet *find_applet_by_name(const char *name); +void run_applet_by_name(const char *name, int argc, char **argv); #ifndef DMALLOC extern void *xmalloc (size_t size); -- cgit v1.2.3