X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fconf.h;h=00746da5d346cc704fc32108083281b45b23f620;hb=cedf35c1d6510fe8511bf4d352c842c87de63b88;hp=81c10ce24ae7a2c864ecb17cc2a828fea5522d09;hpb=6ef82224faa2c3c44f4ef18950d3286ef1d4b8ae;p=libucw.git diff --git a/lib/conf.h b/lib/conf.h index 81c10ce2..00746da5 100644 --- a/lib/conf.h +++ b/lib/conf.h @@ -2,8 +2,14 @@ * Sherlock Library -- Reading configuration files * * (c) 2001 Robert Spalek + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ +#ifndef _LIB_CONF_H +#define _LIB_CONF_H + #include /* @@ -19,11 +25,14 @@ byte *cfg_stralloc(byte *s); * the name of the section. The configuration sections are registered by * calling cf_register(). * + * CT_INCOMPLETE_SECTION is identical to CT_SECTION, but when an unknown variable + * is spotted, we ignore it instead of bailing out with an error message. + * * item->var is a pointer to the destination variable or to the special parsing * function. */ -enum cftype { CT_STOP, CT_SECTION, CT_INT, CT_STRING, CT_FUNCTION }; +enum cftype { CT_STOP, CT_SECTION, CT_INCOMPLETE_SECTION, CT_INT, CT_STRING, CT_FUNCTION }; struct cfitem { byte *name; @@ -61,6 +70,9 @@ void cf_read(byte *filename); {"set", 1, 0, 'S'},\ {"config", 1, 0, 'C'}, #define CF_NO_LONG_OPTS (const struct option []){ CF_LONG_OPTS { NULL, 0, 0, 0 } } +#define CF_USAGE \ +"-S, --set sec.item=val\tManual setting of a configuration item\n\ +-C, --config filename\tOverwrite default config filename\n" extern byte *cfdeffile; @@ -68,3 +80,4 @@ int cf_getopt(int argc,char * const argv[], const char *shortopts,const struct option *longopts, int *longindex); +#endif