#ifndef __PATMATCH_HPP #define __PATMATCH_HPP #ifdef __cplusplus extern "C" { #endif #ifdef PATMATCH_DLL # define PATMATCHFUNC DLLAPI #else # define PATMATCHFUNC #endif extern int PATMATCHFUNC dos_match(const char *string, const char *pattern); extern int PATMATCHFUNC joker_match(const char *string, const char *pattern); extern int PATMATCHFUNC shell_match(const char *string, const char *pattern); extern int PATMATCHFUNC grep_match(const char *string, const char *pattern); #ifdef __cplusplus }; #endif #endif