mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
8ef2b021ed
Clear many compiler warnings (i386) & associated bugs - hopefully without introducing too many new bugs:-) (Same exercise required for other archs.) Default compilation has optimisation - or else use ./configure --enable-debug
19 lines
347 B
C
19 lines
347 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the GPL.
|
|
*/
|
|
|
|
#ifndef _LVM_MATCHER_H
|
|
#define _LVM_MATCHER_H
|
|
|
|
#include "pool.h"
|
|
|
|
struct matcher;
|
|
struct matcher *matcher_create(struct pool *mem, const char **patterns,
|
|
unsigned num);
|
|
|
|
int matcher_run(struct matcher *m, const char *begin);
|
|
|
|
#endif
|