X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fconf-internal.h;h=377a9cb235a1ab63e8815a787610a43892fa1f9c;hb=580fd9c443c2a4faba5a703d49f366de5d3968c9;hp=f0f70b8e232741d646f1b283d066f2791b18a877;hpb=86897941a81703e1cbb14cbd3f4b3af1e3a1bcb8;p=libucw.git diff --git a/lib/conf-internal.h b/lib/conf-internal.h index f0f70b8e..377a9cb2 100644 --- a/lib/conf-internal.h +++ b/lib/conf-internal.h @@ -17,11 +17,11 @@ #define OP_1ST 0x200 // in the 1st phase selectors are recorded into the mask #define OP_2ND 0x400 // in the 2nd phase real data are entered enum cf_operation; -extern byte *cf_op_names[]; -extern byte *cf_type_names[]; +extern char *cf_op_names[]; +extern char *cf_type_names[]; uns cf_type_size(enum cf_type type, struct cf_user_type *utype); -byte *cf_interpret_line(byte *name, enum cf_operation op, int number, byte **pars); +char *cf_interpret_line(char *name, enum cf_operation op, int number, char **pars); void cf_init_stack(void); int cf_check_stack(void); @@ -37,7 +37,7 @@ void cf_journal_delete(void); enum cf_commit_mode { CF_NO_COMMIT, CF_COMMIT, CF_COMMIT_ALL }; extern struct cf_section cf_sections; -struct cf_item *cf_find_subitem(struct cf_section *sec, const byte *name); +struct cf_item *cf_find_subitem(struct cf_section *sec, const char *name); int cf_commit_all(enum cf_commit_mode cm); void cf_add_dirty(struct cf_section *sec, void *ptr);