00001 /*---------------------------------------------------------------------------- 00002 secwatch - Copyright (C) 2006 Nic Stevens -- See COPYING for license details 00003 ------------------------------------------------------------------------------ 00004 pattern.h -- Prototypes for the pattern loading and matching functions 00005 -----------------------------------------------------------------------------*/ 00006 #ifndef _PATTERN_H 00007 #define _PATTERN_H 00008 int patternMatch(char *filename, char *str); 00009 int loadPatterns(char *file, char *cebuf, size_t cesiz); 00010 00011 #endif
1.4.6