X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fgetopt.h;h=c6383ea741974490dcf3ac69f498a17ddc69a120;hb=e772e1bde20eb3866ecb7c63d2276b3ae4ea95d5;hp=85321ee901a667b4e6a52f008e6befb35d566348;hpb=86897941a81703e1cbb14cbd3f4b3af1e3a1bcb8;p=libucw.git diff --git a/lib/getopt.h b/lib/getopt.h index 85321ee9..c6383ea7 100644 --- a/lib/getopt.h +++ b/lib/getopt.h @@ -21,10 +21,10 @@ 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(const byte *file); -int cf_load(const byte *file); -int cf_set(const 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 */ @@ -40,8 +40,8 @@ enum cf_operation { CF_OPERATIONS }; #undef T struct cf_item; -byte *cf_find_item(const 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 */