00001 /* Copyright (C) 2014- The University of Notre Dame 00002 * This software is distributed under the GNU General Public License. 00003 * See the file COPYING for details. 00004 */ 00005 00006 #ifndef PATTERN_H 00007 #define PATTERN_H 00008 00009 #include <stdarg.h> 00010 #include <stddef.h> 00011 00023 ptrdiff_t pattern_vmatch (const char *str, const char *patt, va_list va); 00024 ptrdiff_t pattern_match (const char *str, const char *patt, ...); 00025 00026 #endif /* PATTERN_H */