windows-nt/Source/XPSP1/NT/com/rpc/runtime/trans/common/regexp.hxx
2020-09-26 16:20:57 +08:00

25 lines
667 B
C++

//---------------------------------------------------------------------------
// Copyright (C) Microsoft Corporation, 1997 - 1999
//
// regexp.h
//
// Simple, fast regular expression matching.
//
// Author:
// 06-02-97 Edward Reus Initial version.
//
//---------------------------------------------------------------------------
extern BOOL MatchRE( unsigned char *pszString,
unsigned char *pszPattern );
extern BOOL MatchREList( unsigned char *pszString,
unsigned char **ppszREList );
extern BOOL MatchExactList( unsigned char *pszString,
unsigned char **ppszREList );