aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.h
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-04-14 21:43:22 -0500
committerRob Landley <rob@landley.net>2013-04-14 21:43:22 -0500
commit36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620 (patch)
tree02fa7a68fe53808c79ce72f9ba21beb0b9908214 /lib/lib.h
parent26c0045a6eb061e180f58b6b4c029a5df5a2818e (diff)
downloadtoybox-36ffc5aa3e6bfcab5d628208f4f1508f9b1c2620.tar.gz
Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure.
Diffstat (limited to 'lib/lib.h')
-rw-r--r--lib/lib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/lib.h b/lib/lib.h
index 1b1899b0..8b28bd32 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -81,6 +81,10 @@ void dirtree_recurse(struct dirtree *node,
int (*callback)(struct dirtree *node), int symfollow);
struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node));
+// help.c
+
+void show_help(void);
+
// lib.c
void xstrcpy(char *dest, char *src, size_t size);
void verror_msg(char *msg, int err, va_list va);