Update copyright year, and fix some inaccurate names and numbers.
Chris Pressey
7 years ago
6 | 6 |
|
7 | 7 |
-----------------------------------------------------------------------------
|
8 | 8 |
|
9 | |
Copyright (c)1993-2012 Chris Pressey, Cat's Eye Technologies.
|
|
9 |
Copyright (c)1993-2015 Chris Pressey, Cat's Eye Technologies.
|
10 | 10 |
|
11 | 11 |
The authors intend this Report to belong to the entire Befunge
|
12 | 12 |
community, and so we grant permission to copy and distribute it for
|
|
23 | 23 |
|
24 | 24 |
-----------------------------------------------------------------------------
|
25 | 25 |
|
26 | |
Copyright (c)1993-2012, Chris Pressey, Cat's Eye Technologies.
|
|
26 |
Copyright (c)1993-2015, Chris Pressey, Cat's Eye Technologies.
|
27 | 27 |
All rights reserved.
|
28 | 28 |
|
29 | 29 |
Redistribution and use in source and binary forms, with or without
|
|
110 | 110 |
works, and disclaim liability for all uses of the works, to the fullest extent
|
111 | 111 |
permitted by applicable law.
|
112 | 112 |
|
113 | |
Please consult the file `index.html` in the `eg` subdirectory to see who
|
|
113 |
Please consult the file `README.markdown` in the `eg` subdirectory to see who
|
114 | 114 |
each program was written by.
|
20 | 20 |
* `README.markdown`: these post-modernist existential rants
|
21 | 21 |
* `LICENSE`: a bedtime story written to give your lawyer sweet dreams
|
22 | 22 |
* `doc/Befunge-93.markdown`: the specification for Befunge-93, such as it is
|
23 | |
* `src/bef.c`: Befunge-93 reference interpreter/debugger v2.22 source code
|
|
23 |
* `src/bef.c`: Befunge-93 reference interpreter/debugger v2.23 source code
|
24 | 24 |
* `src/bef2c.c`: Befunge-93 to ANSI C compiler v0.94 source code
|
25 | 25 |
* `src/befprof.c`: Befunge-93 profiler v0.94 source code
|
26 | 26 |
* `eg/*`: Various and sundry contributed Befunge-93 programs
|
0 | 0 |
/* ******************************************************************
|
1 | 1 |
|
2 | 2 |
bef.c - The Original Befunge-93 Interpreter/Debugger in ANSI C
|
3 | |
v2.23 Aug 25 2011 Chris Pressey, Cat's Eye Technologies
|
4 | |
|
5 | |
Copyright (c)1993-2012, Chris Pressey, Cat's Eye Technologies.
|
|
3 |
v2.23-and-then-some-TODO-describe-the-changes-then-bump-this
|
|
4 |
|
|
5 |
Copyright (c)1993-2015, 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
|
9 | 9 |
modification, are permitted provided that the following conditions
|
10 | 10 |
are met:
|
|
58 | 58 |
|
59 | 59 |
Borland C++ v3.1 (16-bit MS-DOS)
|
60 | 60 |
DJGPP v2.952 (32-bit Protected-Mode MS-DOS)
|
61 | |
Mingw v2.
|
62 | 61 |
|
63 | 62 |
******************************************************************
|
64 | 63 |
|