1PCRE LICENCE 2------------ 3 4PCRE is a library of functions to support regular expressions whose syntax 5and semantics are as close as possible to those of the Perl 5 language. 6 7Release 8 of PCRE is distributed under the terms of the "BSD" licence, as 8specified below. The documentation for PCRE, supplied in the "doc" 9directory, is distributed under the same terms as the software itself. The data 10in the testdata directory is not copyrighted and is in the public domain. 11 12The basic library functions are written in C and are freestanding. Also 13included in the distribution is a set of C++ wrapper functions, and a 14just-in-time compiler that can be used to optimize pattern matching. These 15are both optional features that can be omitted when the library is built. 16 17 18THE BASIC LIBRARY FUNCTIONS 19--------------------------- 20 21Written by: Philip Hazel 22Email local part: ph10 23Email domain: cam.ac.uk 24 25University of Cambridge Computing Service, 26Cambridge, England. 27 28Copyright (c) 1997-2015 University of Cambridge 29All rights reserved. 30 31 32PCRE JUST-IN-TIME COMPILATION SUPPORT 33------------------------------------- 34 35Written by: Zoltan Herczeg 36Email local part: hzmester 37Emain domain: freemail.hu 38 39Copyright(c) 2010-2015 Zoltan Herczeg 40All rights reserved. 41 42 43STACK-LESS JUST-IN-TIME COMPILER 44-------------------------------- 45 46Written by: Zoltan Herczeg 47Email local part: hzmester 48Emain domain: freemail.hu 49 50Copyright(c) 2009-2015 Zoltan Herczeg 51All rights reserved. 52 53 54THE C++ WRAPPER FUNCTIONS 55------------------------- 56 57Contributed by: Google Inc. 58 59Copyright (c) 2007-2012, Google Inc. 60All rights reserved. 61 62 63THE "BSD" LICENCE 64----------------- 65