summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-11-14 08:58:02 +0000
committerPaul Buetow <paul@buetow.org>2009-11-14 08:58:02 +0000
commitedab52e9856f5af831a21ab14cc1452eda4399e9 (patch)
tree49202e84cd47df5b8f9e8ee1afa84ddb1a3a5d94
parentd02a747ee8d7c1347a3bb2be2517ac280a55b97d (diff)
-rw-r--r--COPYING2
-rw-r--r--docs/header.txt4
-rw-r--r--src/argv.c4
-rw-r--r--src/argv.h4
-rw-r--r--src/build.h4
-rw-r--r--src/core/convert.c4
-rw-r--r--src/core/convert.h4
-rw-r--r--src/core/function.c4
-rw-r--r--src/core/function.h4
-rw-r--r--src/core/functions.c4
-rw-r--r--src/core/functions.h4
-rw-r--r--src/core/garbage.c4
-rw-r--r--src/core/garbage.h4
-rw-r--r--src/core/interpret.c4
-rw-r--r--src/core/interpret.h4
-rw-r--r--src/core/reference.c4
-rw-r--r--src/core/reference.h4
-rw-r--r--src/core/scanner.c4
-rw-r--r--src/core/scanner.h4
-rw-r--r--src/core/scope.c4
-rw-r--r--src/core/scope.h4
-rw-r--r--src/core/symbol.c4
-rw-r--r--src/core/symbol.h4
-rw-r--r--src/core/token.c4
-rw-r--r--src/core/token.h4
-rw-r--r--src/data/array.c4
-rw-r--r--src/data/array.h4
-rw-r--r--src/data/dat.c4
-rw-r--r--src/data/dat.h4
-rw-r--r--src/data/hash.c4
-rw-r--r--src/data/hash.h4
-rw-r--r--src/data/list.c4
-rw-r--r--src/data/list.h4
-rw-r--r--src/data/map.c4
-rw-r--r--src/data/map.h4
-rw-r--r--src/data/queue.c4
-rw-r--r--src/data/queue.h4
-rw-r--r--src/data/stack.c4
-rw-r--r--src/data/stack.h4
-rw-r--r--src/data/tree.c4
-rw-r--r--src/data/tree.h4
-rw-r--r--src/data/tupel.c4
-rw-r--r--src/data/tupel.h4
-rw-r--r--src/data/types.h4
-rw-r--r--src/defines.h4
-rw-r--r--src/fype.c4
-rw-r--r--src/fype.h4
-rw-r--r--src/main.c4
48 files changed, 95 insertions, 95 deletions
diff --git a/COPYING b/COPYING
index ef7c913..e7642a4 100644
--- a/COPYING
+++ b/COPYING
@@ -9,7 +9,7 @@ modification, are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- * Neither the name of P. B. Labs nor the names of its contributors may
+ * Neither the name of buetow.org nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
diff --git a/docs/header.txt b/docs/header.txt
index a5ac89f..88c96c2 100644
--- a/docs/header.txt
+++ b/docs/header.txt
@@ -1,7 +1,7 @@
File: ${FILE}
A simple interpreter
-WWW : http://fype.buetow.org
+WWW : http://fype.buetow.org
AUTHOR : http://paul.buetow.org
E-Mail : fype at dev.buetow.org
@@ -15,7 +15,7 @@ fication, are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
- * Neither the name of P. B. Labs nor the names of its contributors may
+ * Neither the name of buetow.org nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.
diff --git a/src/argv.c b/src/argv.c
index 846de19..926e854 100644
--- a/src/argv.c
+++ b/src/argv.c
@@ -2,7 +2,7 @@
*: File: ./src/argv.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/argv.h b/src/argv.h
index 3e7a647..18baa8c 100644
--- a/src/argv.h
+++ b/src/argv.h
@@ -2,7 +2,7 @@
*: File: ./src/argv.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/build.h b/src/build.h
index 30e43f1..eecab62 100644
--- a/src/build.h
+++ b/src/build.h
@@ -2,7 +2,7 @@
*: File: ./src/build.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/convert.c b/src/core/convert.c
index e420d6f..cf8987e 100644
--- a/src/core/convert.c
+++ b/src/core/convert.c
@@ -2,7 +2,7 @@
*: File: ./src/core/convert.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/convert.h b/src/core/convert.h
index 186a198..9dcf23e 100644
--- a/src/core/convert.h
+++ b/src/core/convert.h
@@ -2,7 +2,7 @@
*: File: ./src/core/convert.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/function.c b/src/core/function.c
index 6ae314b..70166ed 100644
--- a/src/core/function.c
+++ b/src/core/function.c
@@ -2,7 +2,7 @@
*: File: ./src/core/function.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/function.h b/src/core/function.h
index fa8a8dd..748ebce 100644
--- a/src/core/function.h
+++ b/src/core/function.h
@@ -2,7 +2,7 @@
*: File: ./src/core/function.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/functions.c b/src/core/functions.c
index ea1b515..82efc4f 100644
--- a/src/core/functions.c
+++ b/src/core/functions.c
@@ -2,7 +2,7 @@
*: File: ./src/core/functions.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/functions.h b/src/core/functions.h
index aee89fb..4e00dc2 100644
--- a/src/core/functions.h
+++ b/src/core/functions.h
@@ -2,7 +2,7 @@
*: File: ./src/core/functions.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/garbage.c b/src/core/garbage.c
index ee27449..23c73b8 100644
--- a/src/core/garbage.c
+++ b/src/core/garbage.c
@@ -2,7 +2,7 @@
*: File: ./src/core/garbage.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/garbage.h b/src/core/garbage.h
index 1ba73ef..f7533eb 100644
--- a/src/core/garbage.h
+++ b/src/core/garbage.h
@@ -2,7 +2,7 @@
*: File: ./src/core/garbage.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/interpret.c b/src/core/interpret.c
index ddd4d09..49fab69 100644
--- a/src/core/interpret.c
+++ b/src/core/interpret.c
@@ -2,7 +2,7 @@
*: File: ./src/core/interpret.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/interpret.h b/src/core/interpret.h
index 8412f19..6ac035a 100644
--- a/src/core/interpret.h
+++ b/src/core/interpret.h
@@ -2,7 +2,7 @@
*: File: ./src/core/interpret.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/reference.c b/src/core/reference.c
index 4dbed43..3eccaaa 100644
--- a/src/core/reference.c
+++ b/src/core/reference.c
@@ -2,7 +2,7 @@
*: File: ./src/core/reference.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/reference.h b/src/core/reference.h
index 1eade79..6cda63d 100644
--- a/src/core/reference.h
+++ b/src/core/reference.h
@@ -2,7 +2,7 @@
*: File: ./src/core/reference.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/scanner.c b/src/core/scanner.c
index 2966cf5..96d3756 100644
--- a/src/core/scanner.c
+++ b/src/core/scanner.c
@@ -2,7 +2,7 @@
*: File: ./src/core/scanner.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/scanner.h b/src/core/scanner.h
index 30c735c..7fb20d0 100644
--- a/src/core/scanner.h
+++ b/src/core/scanner.h
@@ -2,7 +2,7 @@
*: File: ./src/core/scanner.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/scope.c b/src/core/scope.c
index 8482a9d..a9098a9 100644
--- a/src/core/scope.c
+++ b/src/core/scope.c
@@ -2,7 +2,7 @@
*: File: ./src/core/scope.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/scope.h b/src/core/scope.h
index 9bfafde..c1193c9 100644
--- a/src/core/scope.h
+++ b/src/core/scope.h
@@ -2,7 +2,7 @@
*: File: ./src/core/scope.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/symbol.c b/src/core/symbol.c
index f207754..f4ad990 100644
--- a/src/core/symbol.c
+++ b/src/core/symbol.c
@@ -2,7 +2,7 @@
*: File: ./src/core/symbol.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/symbol.h b/src/core/symbol.h
index 4312add..56f0e44 100644
--- a/src/core/symbol.h
+++ b/src/core/symbol.h
@@ -2,7 +2,7 @@
*: File: ./src/core/symbol.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/token.c b/src/core/token.c
index 1a34fbc..b019a83 100644
--- a/src/core/token.c
+++ b/src/core/token.c
@@ -2,7 +2,7 @@
*: File: ./src/core/token.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/core/token.h b/src/core/token.h
index c8eb3f2..514a02d 100644
--- a/src/core/token.h
+++ b/src/core/token.h
@@ -2,7 +2,7 @@
*: File: ./src/core/token.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/array.c b/src/data/array.c
index 6caf8fd..fbb4590 100644
--- a/src/data/array.c
+++ b/src/data/array.c
@@ -2,7 +2,7 @@
*: File: ./src/data/array.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/array.h b/src/data/array.h
index 53c9aaa..21c23d3 100644
--- a/src/data/array.h
+++ b/src/data/array.h
@@ -2,7 +2,7 @@
*: File: ./src/data/array.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/dat.c b/src/data/dat.c
index 5ddf535..edd861f 100644
--- a/src/data/dat.c
+++ b/src/data/dat.c
@@ -2,7 +2,7 @@
*: File: ./src/data/dat.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/dat.h b/src/data/dat.h
index ad2cfd5..6e638cb 100644
--- a/src/data/dat.h
+++ b/src/data/dat.h
@@ -2,7 +2,7 @@
*: File: ./src/data/dat.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/hash.c b/src/data/hash.c
index c5fd41f..c892f2c 100644
--- a/src/data/hash.c
+++ b/src/data/hash.c
@@ -2,7 +2,7 @@
*: File: ./src/data/hash.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/hash.h b/src/data/hash.h
index c1f2534..13dd742 100644
--- a/src/data/hash.h
+++ b/src/data/hash.h
@@ -2,7 +2,7 @@
*: File: ./src/data/hash.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/list.c b/src/data/list.c
index 932b60f..f751fa0 100644
--- a/src/data/list.c
+++ b/src/data/list.c
@@ -2,7 +2,7 @@
*: File: ./src/data/list.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/list.h b/src/data/list.h
index 8baa1fe..1295485 100644
--- a/src/data/list.h
+++ b/src/data/list.h
@@ -2,7 +2,7 @@
*: File: ./src/data/list.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/map.c b/src/data/map.c
index e078df4..2437385 100644
--- a/src/data/map.c
+++ b/src/data/map.c
@@ -2,7 +2,7 @@
*: File: ./src/data/map.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/map.h b/src/data/map.h
index 75dd0a3..c457529 100644
--- a/src/data/map.h
+++ b/src/data/map.h
@@ -2,7 +2,7 @@
*: File: ./src/data/map.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/queue.c b/src/data/queue.c
index db16a39..e6e6d7b 100644
--- a/src/data/queue.c
+++ b/src/data/queue.c
@@ -2,7 +2,7 @@
*: File: ./src/data/queue.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/queue.h b/src/data/queue.h
index a95f42b..5e24fce 100644
--- a/src/data/queue.h
+++ b/src/data/queue.h
@@ -2,7 +2,7 @@
*: File: ./src/data/queue.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/stack.c b/src/data/stack.c
index ca12704..7e30f32 100644
--- a/src/data/stack.c
+++ b/src/data/stack.c
@@ -2,7 +2,7 @@
*: File: ./src/data/stack.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/stack.h b/src/data/stack.h
index 21dcdcb..a54a894 100644
--- a/src/data/stack.h
+++ b/src/data/stack.h
@@ -2,7 +2,7 @@
*: File: ./src/data/stack.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/tree.c b/src/data/tree.c
index 81f7321..67f0b15 100644
--- a/src/data/tree.c
+++ b/src/data/tree.c
@@ -2,7 +2,7 @@
*: File: ./src/data/tree.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/tree.h b/src/data/tree.h
index 0bcb8d6..6dc7d4b 100644
--- a/src/data/tree.h
+++ b/src/data/tree.h
@@ -2,7 +2,7 @@
*: File: ./src/data/tree.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/tupel.c b/src/data/tupel.c
index b9babe4..1294fbf 100644
--- a/src/data/tupel.c
+++ b/src/data/tupel.c
@@ -2,7 +2,7 @@
*: File: ./src/data/tupel.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/tupel.h b/src/data/tupel.h
index 61dd3d2..35ad6d0 100644
--- a/src/data/tupel.h
+++ b/src/data/tupel.h
@@ -2,7 +2,7 @@
*: File: ./src/data/tupel.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/data/types.h b/src/data/types.h
index 3619b7a..3fbab40 100644
--- a/src/data/types.h
+++ b/src/data/types.h
@@ -2,7 +2,7 @@
*: File: ./src/data/types.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/defines.h b/src/defines.h
index 8161266..815075f 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -2,7 +2,7 @@
*: File: ./src/defines.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/fype.c b/src/fype.c
index 46e1cee..23f017f 100644
--- a/src/fype.c
+++ b/src/fype.c
@@ -2,7 +2,7 @@
*: File: ./src/fype.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/fype.h b/src/fype.h
index c8af44c..a8bd2b2 100644
--- a/src/fype.h
+++ b/src/fype.h
@@ -2,7 +2,7 @@
*: File: ./src/fype.h
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*:
diff --git a/src/main.c b/src/main.c
index a0bc43f..c01a9f3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,7 +2,7 @@
*: File: ./src/main.c
*: A simple interpreter
*:
- *: WWW : http://fype.buetow.org
+ *: WWW : http://fype.buetow.org
*: AUTHOR : http://paul.buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -16,7 +16,7 @@
*: * Redistributions in binary form must reproduce the above copyright
*: notice, this list of conditions and the following disclaimer in the
*: documentation and/or other materials provided with the distribution.
- *: * Neither the name of P. B. Labs nor the names of its contributors may
+ *: * Neither the name of buetow.org nor the names of its contributors may
*: be used to endorse or promote products derived from this software
*: without specific prior written permission.
*: