From 12323741068f0bce365b7b1b88394ab93ff3e230 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Sun, 27 Sep 1998 15:57:56 +0000 Subject: split popt into multiple files svn path=/trunk/; revision=413 --- support/poptint.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 support/poptint.h (limited to 'support') diff --git a/support/poptint.h b/support/poptint.h new file mode 100644 index 00000000..f7b40d69 --- /dev/null +++ b/support/poptint.h @@ -0,0 +1,42 @@ +#ifndef H_POPTINT +#define H_POPTINT + +struct optionStackEntry { + int argc; + char ** argv; + int next; + char * nextArg; + char * nextCharArg; + struct poptAlias * currAlias; + int stuffed; +}; + +struct execEntry { + char * longName; + char shortName; + char * script; +}; + +struct poptContext_s { + struct optionStackEntry optionStack[POPT_OPTION_DEPTH], * os; + char ** leftovers; + int numLeftovers; + int nextLeftover; + const struct poptOption * options; + int restLeftover; + char * appName; + struct poptAlias * aliases; + int numAliases; + int flags; + struct execEntry * execs; + int numExecs; + char ** finalArgv; + int finalArgvCount; + int finalArgvAlloced; + struct execEntry * doExec; + char * execPath; + int execAbsolute; + char * otherHelp; +}; + +#endif -- cgit v1.2.1