X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fgetopt.h;h=c6383ea741974490dcf3ac69f498a17ddc69a120;hb=90afcc18dbf7cb6c682e1efb994007f03e304422;hp=fee099a259ef05f94b39838282b125a52c0aef83;hpb=47a0795e8a28e8ad6ff55cda89e300267d9e590c;p=libucw.git diff --git a/lib/getopt.h b/lib/getopt.h index fee099a2..c6383ea7 100644 --- a/lib/getopt.h +++ b/lib/getopt.h @@ -11,14 +11,20 @@ #ifndef _UCW_GETOPT_H #define _UCW_GETOPT_H +#ifdef CONFIG_OWN_GETOPT +#include "lib/getopt/getopt-sh.h" +#else #include +#endif + +void reset_getopt(void); /* Safe loading and reloading of configuration files: conf-input.c */ -extern byte *cf_def_file; /* DEFAULT_CONFIG; NULL if already loaded */ -int cf_reload(byte *file); -int cf_load(byte *file); -int cf_set(byte *string); +extern char *cf_def_file; /* DEFAULT_CONFIG; NULL if already loaded */ +int cf_reload(const char *file); +int cf_load(const char *file); +int cf_set(const char *string); /* Direct access to configuration items: conf-intr.c */ @@ -34,8 +40,8 @@ enum cf_operation { CF_OPERATIONS }; #undef T struct cf_item; -byte *cf_find_item(byte *name, struct cf_item *item); -byte *cf_write_item(struct cf_item *item, enum cf_operation op, int number, byte **pars); +char *cf_find_item(const char *name, struct cf_item *item); +char *cf_write_item(struct cf_item *item, enum cf_operation op, int number, char **pars); /* Debug dumping: conf-dump.c */