Update license verbiage (no "REGENTS" please.)
catseye
9 years ago
12 | 12 | The source code for the reference interpreter and supporting tools (in the |
13 | 13 | `src` subdirectory) is covered under the following BSD-style license: |
14 | 14 | |
15 | Copyright (c)1993-2011, Cat's Eye Technologies. | |
15 | Copyright (c)1993-2012, Chris Pressey, Cat's Eye Technologies. | |
16 | 16 | All rights reserved. |
17 | 17 | |
18 | 18 | Redistribution and use in source and binary forms, with or without |
2 | 2 | bef.c - The Original Befunge-93 Interpreter/Debugger in ANSI C |
3 | 3 | v2.22 Mar 18 2011 Chris Pressey, Cat's Eye Technologies |
4 | 4 | |
5 | Copyright (c)1993-2011, Cat's Eye Technologies. | |
5 | Copyright (c)1993-2012, Chris Pressey, Cat's Eye Technologies. | |
6 | 6 | All rights reserved. |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
1 | 1 | |
2 | 2 | bef2c.c - Befunge-93 to ANSI C Compiler in ANSI C |
3 | 3 | v0.94 Sep 20 2004 Chris Pressey, Cat's-Eye Technologies |
4 | http://catseye.webhop.net/projects/bef/ | |
5 | ||
6 | Copyright (c)1997-2004, Cat's Eye Technologies. | |
4 | ||
5 | Copyright (c)1997-2012, Chris Pressey, Cat's Eye Technologies. | |
7 | 6 | All rights reserved. |
8 | 7 | |
9 | 8 | Redistribution and use in source and binary forms, with or without |
11 | 10 | are met: |
12 | 11 | |
13 | 12 | Redistributions of source code must retain the above copyright |
14 | notice, this list of conditions and the following disclaimer. | |
13 | notices, this list of conditions and the following disclaimer. | |
15 | 14 | |
16 | 15 | Redistributions in binary form must reproduce the above copyright |
17 | notice, this list of conditions and the following disclaimer in | |
16 | notices, this list of conditions, and the following disclaimer in | |
18 | 17 | the documentation and/or other materials provided with the |
19 | 18 | distribution. |
20 | 19 | |
21 | Neither the name of Cat's Eye Technologies nor the names of its | |
20 | Neither the names of the copyright holders nor the names of their | |
22 | 21 | contributors may be used to endorse or promote products derived |
23 | 22 | from this software without specific prior written permission. |
24 | 23 | |
25 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | |
26 | CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | |
27 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
28 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
29 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE | |
30 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, | |
31 | OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
32 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | |
33 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
34 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
35 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
36 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
37 | POSSIBILITY OF SUCH DAMAGE. | |
24 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
25 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
26 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
27 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
28 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
29 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
30 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
31 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
32 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
33 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
34 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
35 | POSSIBILITY OF SUCH DAMAGE. | |
38 | 36 | |
39 | 37 | ****************************************************************** |
40 | 38 |
1 | 1 | |
2 | 2 | befprof.c - Befunge-93 Profiler |
3 | 3 | v0.94 Sep 20 2004 Chris Pressey, Cat's-Eye Technologies |
4 | http://catseye.webhop.net/projects/bef/ | |
5 | ||
6 | Copyright (c)1998-2004, Cat's Eye Technologies. | |
4 | ||
5 | Copyright (c)1998-2012, Chris Pressey, Cat's Eye Technologies. | |
7 | 6 | All rights reserved. |
8 | 7 | |
9 | 8 | Redistribution and use in source and binary forms, with or without |
11 | 10 | are met: |
12 | 11 | |
13 | 12 | Redistributions of source code must retain the above copyright |
14 | notice, this list of conditions and the following disclaimer. | |
13 | notices, this list of conditions and the following disclaimer. | |
15 | 14 | |
16 | 15 | Redistributions in binary form must reproduce the above copyright |
17 | notice, this list of conditions and the following disclaimer in | |
16 | notices, this list of conditions, and the following disclaimer in | |
18 | 17 | the documentation and/or other materials provided with the |
19 | 18 | distribution. |
20 | 19 | |
21 | Neither the name of Cat's Eye Technologies nor the names of its | |
20 | Neither the names of the copyright holders nor the names of their | |
22 | 21 | contributors may be used to endorse or promote products derived |
23 | 22 | from this software without specific prior written permission. |
24 | 23 | |
25 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | |
26 | CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | |
27 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
28 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
29 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE | |
30 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, | |
31 | OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
32 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | |
33 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
34 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
35 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
36 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
37 | POSSIBILITY OF SUCH DAMAGE. | |
24 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
25 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
26 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
27 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
28 | COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
29 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
30 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
31 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
32 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
33 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
34 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
35 | POSSIBILITY OF SUCH DAMAGE. | |
38 | 36 | |
39 | 37 | ****************************************************************** |
40 | 38 |