1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2025-04-21 12:27:27 +03:00

b2/: choose better names for creator functions in chr.c

This commit is contained in:
Werner Almesberger
2012-04-26 02:48:08 -03:00
parent b3c865e6fd
commit 3fff9373e3
3 changed files with 9 additions and 9 deletions

View File

@@ -48,10 +48,10 @@ struct field {
const struct format *field_find(const char *name, const struct field *tail);
struct field *field_new(const char *name, const struct format *fmt,
struct field *new_field(const char *name, const struct format *fmt,
const struct field *prev);
struct selector *field_selector(void);
struct condition *field_condition(enum relop relop, const char *word);
struct selector *new_selector(void);
struct condition *new_condition(enum relop relop, const char *word);
void field_finalize(struct field *field);
void field_dump(FILE *file, const struct field *field);