-
Notifications
You must be signed in to change notification settings - Fork 5
/
CREDITS
52 lines (37 loc) · 1.39 KB
/
CREDITS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
For license please see the the file COPYING.
Developer
---------
Arvid Norlander <anmaster [AT] tele2 no spam DOT se>
Thanks to
---------
Alex Smith (maintainer of C-INTERCAL)...
...for finding several bugs in cfunge.
...for writing the C-INTERCAL/Befunge FFI.
Matti Niemenmaa...
...for being the author of the excellent Befunge test suite Mycology.
...for writing the Befunge interpreter CCBI which was very helpful to study
when writing cfunge.
Third party code
----------------
Some of the code has been inspired by how the Befunge interpreter CCBI
(coded in D) solves certain issues:
CCBI was written by Matti Niemenmaa.
See http://iki.fi/matti.niemenmaa/befunge/ccbi.html for more information.
Some code have been taken from other projects (all in lib/*).
They have been modified as needed to work in the cfunge project.
Some whole libraries were imported:
Genx, A library for writing XML files.
By: Tim Bray.
URL: http://www.tbray.org/ongoing/genx/
lib/genx/*
libghthash, A generic hash library.
By: Simon Kagstrom
URL: http://www.ipd.bth.se/ska/sim_home/libghthash.html
lib/libghthash/*
Just a few files were taken from:
CrossFire, A Multiplayer game for X-windows:
By: Crossfire Development Team
URL: http://crossfire.real-time.com/
lib/stringbuffer/*
Some string buffer routines to make constructing strings by appending
easier.