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.

33 lines
887 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. #ifndef REG_EXP_H
  13. #define REG_EXP_H
  14. extern BOOL MatchREi( unsigned char *pszString,
  15. unsigned char *pszPattern );
  16. #if FALSE
  17. ... not currently used ...
  18. extern BOOL MatchRE( unsigned char *pszString,
  19. unsigned char *pszPattern );
  20. extern BOOL MatchREList( unsigned char *pszString,
  21. unsigned char **ppszREList );
  22. extern BOOL MatchExactList( unsigned char *pszString,
  23. unsigned char **ppszREList );
  24. #endif
  25. #endif