Leaked source code of windows server 2003

30 lines
637 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2001
  5. //
  6. // File: rxlib.cpp
  7. //
  8. // Contents: Regular expression library
  9. //
  10. // History: 1-May-2001 kumarp created
  11. //
  12. // Notes: all regex code taken from http://toolbox (owner ericne)
  13. //
  14. //--------------------------------------------------------------------------
  15. #include "pch.cxx"
  16. #pragma hdrstop
  17. #pragma warning( disable : 4018 )
  18. #define assert(a)
  19. #include "syntax.h"
  20. #include "regexpr.h"
  21. #include <syntax.cpp>
  22. #include <regexpr.cpp>