1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-04-19 06:50:42 +03:00
lvm2/lib/datastruct/str_list.h
Alasdair Kergon 13057fe53f str_list_del
2003-10-15 20:01:12 +00:00

16 lines
302 B
C

/*
* Copyright (C) 2003 Sistina Software (UK) Limited.
*
* This file is released under the GPL.
*/
#ifndef _LVM_STR_LIST_H
#define _LVM_STR_LIST_H
#include "pool.h"
int str_list_add(struct pool *mem, struct list *sl, const char *str);
int str_list_del(struct list *sl, const char *str);
#endif