|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 2001
//
// File: rxlib.cpp
//
// Contents: Regular expression library
//
// History: 1-May-2001 kumarp created
//
// Notes: all regex code taken from http://toolbox (owner ericne)
//
//--------------------------------------------------------------------------
#include "pch.cxx"
#pragma hdrstop
#pragma warning( disable : 4018 )
#define assert(a)
#include "syntax.h"
#include "regexpr.h"
#include <syntax.cpp>
#include <regexpr.cpp>
|