diff options
author | Max Kellermann <max@duempel.org> | 2009-03-01 00:52:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-01 00:52:02 +0100 |
commit | b49518c63632ab6a31a8d1267959110858d9f004 (patch) | |
tree | ae06f9006bb7c628cf64b3bdc56d7aa246638c00 /src/tag.h | |
parent | ae87abae593e7baf07b547d8348c31213838e437 (diff) | |
download | mpd-b49518c63632ab6a31a8d1267959110858d9f004.tar.gz mpd-b49518c63632ab6a31a8d1267959110858d9f004.tar.xz mpd-b49518c63632ab6a31a8d1267959110858d9f004.zip |
tag: no CamelCase
Renamed functions and variables.
Diffstat (limited to 'src/tag.h')
-rw-r--r-- | src/tag.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -65,7 +65,7 @@ struct tag *tag_new(void); void tag_lib_init(void); -void tag_clear_items_by_type(struct tag *tag, enum tag_type itemType); +void tag_clear_items_by_type(struct tag *tag, enum tag_type type); void tag_free(struct tag *tag); @@ -83,13 +83,13 @@ void tag_begin_add(struct tag *tag); */ void tag_end_add(struct tag *tag); -void tag_add_item_n(struct tag *tag, enum tag_type itemType, +void tag_add_item_n(struct tag *tag, enum tag_type type, const char *value, size_t len); -static inline void tag_add_item(struct tag *tag, enum tag_type itemType, - const char *value) +static inline void +tag_add_item(struct tag *tag, enum tag_type type, const char *value) { - tag_add_item_n(tag, itemType, value, strlen(value)); + tag_add_item_n(tag, type, value, strlen(value)); } struct tag *tag_dup(const struct tag *tag); |