tag: rename tag.value() -> tag.as_string()

This commit is contained in:
Daniel Eklöf 2018-11-18 11:02:21 +01:00
parent 12e9304612
commit 44a2dbb201
3 changed files with 10 additions and 10 deletions

2
tag.h
View file

@ -9,7 +9,7 @@ struct tag {
void (*destroy)(struct tag *tag);
const char *(*name)(const struct tag *tag);
const char *(*value)(const struct tag *tag);
const char *(*as_string)(const struct tag *tag);
};
struct tag_set {