From 187649de817b618c967d234f0707008e90e52504 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 10 Feb 2016 23:06:12 -0600 Subject: Don't include toys.h from config2help.c (so cross-compiling from systems we don't run on is easier), and use HELP_ instead of help_ for macro prefixes to avoid name collisions (such as help_exit() the function). --- scripts/config2help.c | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) (limited to 'scripts') diff --git a/scripts/config2help.c b/scripts/config2help.c index f3bb8c3f..7bc3badd 100644 --- a/scripts/config2help.c +++ b/scripts/config2help.c @@ -1,11 +1,24 @@ -#include "toys.h" - -// Humor toys.h -struct toy_context toys; -char libbuf[4096], toybuf[4096]; +//#include "toys.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +struct statvfs {int i;}; +#include "lib/portability.h" +#include "lib/lib.h" + +// Humor toys.h (lie through our teeth, C's linker doesn't care). +char toys[4096], libbuf[4096], toybuf[4096]; void show_help(FILE *out) {;} void toy_exec(char *argv[]) {;} -void toy_init(struct toy_list *which, char *argv[]) {;} +void toy_init(void *which, char *argv[]) {;} // Parse config files into data structures. @@ -16,6 +29,7 @@ struct symbol { struct double_list *help; } *sym; +// remove leading spaces char *trim(char *s) { while (isspace(*s)) s++; @@ -23,6 +37,7 @@ char *trim(char *s) return s; } +// if line starts with name (as whole word) return pointer after it, else NULL char *keyword(char *name, char *line) { int len = strlen(name); @@ -36,6 +51,7 @@ char *keyword(char *name, char *line) return line; } +// dlist_pop() freeing wrapper structure for you. char *dlist_zap(struct double_list **help) { struct double_list *dd = dlist_pop(help); @@ -366,7 +382,7 @@ int main(int argc, char *argv[]) char *s = xstrdup(sym->name); for (i = 0; s[i]; i++) s[i] = tolower(s[i]); - printf("#define help_%s \"", s); + printf("#define HELP_%s \"", s); free(s); dd = sym->help; -- cgit v1.2.3