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.
30 lines
637 B
30 lines
637 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// 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>
|
|
|