]> mj.ucw.cz Git - libucw.git/commitdiff
added CF_USAGE
authorRobert Spalek <robert@ucw.cz>
Wed, 26 Sep 2001 12:53:49 +0000 (12:53 +0000)
committerRobert Spalek <robert@ucw.cz>
Wed, 26 Sep 2001 12:53:49 +0000 (12:53 +0000)
lib/conf.h

index 81c10ce24ae7a2c864ecb17cc2a828fea5522d09..b225053cf21e513cd82bd2e4ecb1d66d2b30fb04 100644 (file)
@@ -4,6 +4,9 @@
  *     (c) 2001 Robert Spalek <robert@ucw.cz>
  */
 
+#ifndef        _LIB_CONF_H
+#define        _LIB_CONF_H
+
 #include <getopt.h>
 
 /*
@@ -61,6 +64,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 +74,4 @@ int cf_getopt(int argc,char * const argv[],
                const char *shortopts,const struct option *longopts,
                int *longindex);
 
+#endif