Small ListItem update

This commit is contained in:
Christian Göttsche
2020-10-18 19:22:30 +02:00
committed by cgzones
parent 6375df49c9
commit 03b773b701
2 changed files with 15 additions and 23 deletions

View File

@ -24,8 +24,8 @@ ListItem* ListItem_new(const char* value, int key);
void ListItem_append(ListItem* this, const char* text);
const char* ListItem_getRef(ListItem* this);
long ListItem_compare(const void* cast1, const void* cast2);
static inline const char* ListItem_getRef(const ListItem* this) {
return this->value;
}
#endif