2017-09-05 18:52:39 +08:00
|
|
|
/* Copyright © 1997—1999 Thomas Boutell <boutell@boutell.com>
|
|
|
|
and Boutell.Com, Inc.
|
|
|
|
© 2003—2017 Sam Hocevar <sam@hocevar.net>
|
|
|
|
|
|
|
|
This software is released for free use under the terms of
|
|
|
|
the GNU Public License, version 2 or higher. NO WARRANTY
|
|
|
|
IS EXPRESSED OR IMPLIED. USE THIS SOFTWARE AT YOUR OWN RISK. */
|
|
|
|
|
|
|
|
#pragma once
|
2016-01-11 03:46:19 +08:00
|
|
|
|
2016-01-11 04:22:36 +08:00
|
|
|
extern int match(char const *s, char const *p);
|
|
|
|
extern int matchNoCase(char const *s, char const *p);
|
|
|
|
extern int matchBody(char const *s, char const *p, int nocase);
|
2016-01-11 03:46:19 +08:00
|
|
|
|