1
0
Fork 0

do not handle unique values when no need

This commit is contained in:
illiliti 2020-07-29 12:27:40 +03:00
parent edaf268cac
commit 9b7641d9ec
4 changed files with 36 additions and 34 deletions

View file

@ -7,4 +7,4 @@ struct udev_list_entry {
void udev_list_entry_init(struct udev_list_entry *list_entry);
void udev_list_entry_free(struct udev_list_entry *list_entry);
void udev_list_entry_free_all(struct udev_list_entry *list_entry);
struct udev_list_entry *udev_list_entry_add(struct udev_list_entry *list_entry, const char *name, const char *value);
struct udev_list_entry *udev_list_entry_add(struct udev_list_entry *list_entry, const char *name, const char *value, int uniq);