~ubuntu-branches/debian/sid/lvm2/sid

« back to all changes in this revision

Viewing changes to lib/datastruct/str_list.h

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2014-09-06 19:26:39 UTC
  • mfrom: (1.1.19)
  • Revision ID: package-import@ubuntu.com-20140906192639-lm0cr77p48uenvi8
Tags: 2.02.111-1
* New upstream version.
* Install more systemd units:
  - Add dm-event.service and dm-event.socket to dmeventd.
  - Add lvm2-monitor.service to lvm2 and start it.
* Enable monitoring by default:
  - Add dependency on dmeventd to lvm2 and liblvm2cmd2.02.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
struct dm_list *str_list_create(struct dm_pool *mem);
23
23
int str_list_add(struct dm_pool *mem, struct dm_list *sll, const char *str);
 
24
int str_list_add_no_dup_check(struct dm_pool *mem, struct dm_list *sll, const char *str);
 
25
int str_list_add_h_no_dup_check(struct dm_pool *mem, struct dm_list *sll, const char *str);
24
26
void str_list_del(struct dm_list *sll, const char *str);
25
27
int str_list_match_item(const struct dm_list *sll, const char *str);
26
28
int str_list_match_list(const struct dm_list *sll, const struct dm_list *sll2, const char **tag_matched);