windows-nt/Source/XPSP1/NT/com/rpc/runtime/trans/rpcproxy/regexp.h

34 lines
854 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
//---------------------------------------------------------------------------
// Copyright (C) Microsoft Corporation, 1997 - 1999
//
// regexp.h
//
// Simple, fast regular expression matching.
//
// Author:
// 06-02-97 Edward Reus Initial version.
//
//---------------------------------------------------------------------------
#ifndef REG_EXP_H
#define REG_EXP_H
extern BOOL MatchREi( unsigned char *pszString,
unsigned char *pszPattern );
#if FALSE
... not currently used ...
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 );
#endif
#endif