00001 /* 00002 ** wildmat.c from the INN Project 00003 ** 00004 ** Copyright 1991 Rich Salz. 00005 ** All rights reserved. 00006 ** $Revision: 1.2 $ 00007 ** 00008 ** Redistribution and use in any form are permitted provided that the 00009 ** following restrictions are are met: 00010 ** 1. Source distributions must retain this entire copyright notice 00011 ** and comment. 00012 ** 2. Binary distributions must include the acknowledgement ``This 00013 ** product includes software developed by Rich Salz'' in the 00014 ** documentation or other materials provided with the 00015 ** distribution. This must not be represented as an endorsement 00016 ** or promotion without specific prior written permission. 00017 ** 3. The origin of this software must not be misrepresented, either 00018 ** by explicit claim or by omission. Credits must appear in the 00019 ** source and documentation. 00020 ** 4. Altered versions must be plainly marked as such in the source 00021 ** and documentation and must not be misrepresented as being the 00022 ** original software. 00023 ** THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED 00024 ** WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF 00025 ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00026 ** 00027 ** 00028 */ 00029 00030 #ifndef __LIB_wildmat_h__ 00031 #define __LIB_wildmat_h__ 00032 00033 #ifdef __cplusplus 00034 extern "C" int wildmat(const char *pText, const char *p); 00035 #else 00036 int wildmat(const char *pText, const char *p); 00037 #endif 00038 00039 #endif
1.3.6-20040222