Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
691 B

  1. //---------------------------------------------------------------------------
  2. // Copyright (C) Microsoft Corporation, 1997 - 1999
  3. //
  4. // regexp.h
  5. //
  6. // Simple, fast regular expression matching.
  7. //
  8. // Author:
  9. // 06-02-97 Edward Reus Initial version.
  10. //
  11. //---------------------------------------------------------------------------
  12. extern BOOL MatchRE( unsigned char *pszString,
  13. unsigned char *pszPattern );
  14. extern BOOL MatchREList( unsigned char *pszString,
  15. unsigned char **ppszREList );
  16. extern BOOL MatchExactList( unsigned char *pszString,
  17. unsigned char **ppszREList );