summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/argv.c2
-rw-r--r--src/argv.h2
-rw-r--r--src/build.h2
-rw-r--r--src/core/convert.c2
-rw-r--r--src/core/convert.h2
-rw-r--r--src/core/function.c2
-rw-r--r--src/core/function.h2
-rw-r--r--src/core/functions.c2
-rw-r--r--src/core/functions.h2
-rw-r--r--src/core/garbage.c2
-rw-r--r--src/core/garbage.h2
-rw-r--r--src/core/interpret.c2
-rw-r--r--src/core/interpret.h2
-rw-r--r--src/core/reference.c2
-rw-r--r--src/core/reference.h2
-rw-r--r--src/core/scanner.c2
-rw-r--r--src/core/scanner.h2
-rw-r--r--src/core/scope.c2
-rw-r--r--src/core/scope.h2
-rw-r--r--src/core/symbol.c2
-rw-r--r--src/core/symbol.h2
-rw-r--r--src/core/token.c2
-rw-r--r--src/core/token.h2
-rw-r--r--src/data/array.c2
-rw-r--r--src/data/array.h2
-rw-r--r--src/data/dat.c2
-rw-r--r--src/data/dat.h2
-rw-r--r--src/data/hash.c2
-rw-r--r--src/data/hash.h2
-rw-r--r--src/data/list.c2
-rw-r--r--src/data/list.h2
-rw-r--r--src/data/map.c2
-rw-r--r--src/data/map.h2
-rw-r--r--src/data/queue.c2
-rw-r--r--src/data/queue.h2
-rw-r--r--src/data/stack.c2
-rw-r--r--src/data/stack.h2
-rw-r--r--src/data/tree.c2
-rw-r--r--src/data/tree.h2
-rw-r--r--src/data/tupel.c2
-rw-r--r--src/data/tupel.h2
-rw-r--r--src/data/types.h2
-rw-r--r--src/defines.h4
-rw-r--r--src/fype.c2
-rw-r--r--src/fype.h2
-rw-r--r--src/main.c2
46 files changed, 47 insertions, 47 deletions
diff --git a/src/argv.c b/src/argv.c
index 92a2d35..410356b 100644
--- a/src/argv.c
+++ b/src/argv.c
@@ -2,7 +2,7 @@
*: File: ./src/argv.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/argv.h b/src/argv.h
index 63608e9..c5892c4 100644
--- a/src/argv.h
+++ b/src/argv.h
@@ -2,7 +2,7 @@
*: File: ./src/argv.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/build.h b/src/build.h
index e8aab9b..c8341fa 100644
--- a/src/build.h
+++ b/src/build.h
@@ -2,7 +2,7 @@
*: File: ./src/build.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/convert.c b/src/core/convert.c
index 027c6ee..dfe124e 100644
--- a/src/core/convert.c
+++ b/src/core/convert.c
@@ -2,7 +2,7 @@
*: File: ./src/core/convert.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/convert.h b/src/core/convert.h
index 245b3bd..660785a 100644
--- a/src/core/convert.h
+++ b/src/core/convert.h
@@ -2,7 +2,7 @@
*: File: ./src/core/convert.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/function.c b/src/core/function.c
index 2111bf1..f4db0c8 100644
--- a/src/core/function.c
+++ b/src/core/function.c
@@ -2,7 +2,7 @@
*: File: ./src/core/function.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/function.h b/src/core/function.h
index 617e133..736a176 100644
--- a/src/core/function.h
+++ b/src/core/function.h
@@ -2,7 +2,7 @@
*: File: ./src/core/function.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/functions.c b/src/core/functions.c
index 9aa354a..792065a 100644
--- a/src/core/functions.c
+++ b/src/core/functions.c
@@ -2,7 +2,7 @@
*: File: ./src/core/functions.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/functions.h b/src/core/functions.h
index 7b7c338..e20355b 100644
--- a/src/core/functions.h
+++ b/src/core/functions.h
@@ -2,7 +2,7 @@
*: File: ./src/core/functions.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/garbage.c b/src/core/garbage.c
index 2291b00..3988dc5 100644
--- a/src/core/garbage.c
+++ b/src/core/garbage.c
@@ -2,7 +2,7 @@
*: File: ./src/core/garbage.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/garbage.h b/src/core/garbage.h
index 3233e39..5151e23 100644
--- a/src/core/garbage.h
+++ b/src/core/garbage.h
@@ -2,7 +2,7 @@
*: File: ./src/core/garbage.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/interpret.c b/src/core/interpret.c
index 4aba04e..5b5e80b 100644
--- a/src/core/interpret.c
+++ b/src/core/interpret.c
@@ -2,7 +2,7 @@
*: File: ./src/core/interpret.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/interpret.h b/src/core/interpret.h
index 2085e88..f31d100 100644
--- a/src/core/interpret.h
+++ b/src/core/interpret.h
@@ -2,7 +2,7 @@
*: File: ./src/core/interpret.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/reference.c b/src/core/reference.c
index 3727d01..a309231 100644
--- a/src/core/reference.c
+++ b/src/core/reference.c
@@ -2,7 +2,7 @@
*: File: ./src/core/reference.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/reference.h b/src/core/reference.h
index b262720..d9d365f 100644
--- a/src/core/reference.h
+++ b/src/core/reference.h
@@ -2,7 +2,7 @@
*: File: ./src/core/reference.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/scanner.c b/src/core/scanner.c
index d2923e1..ff7baca 100644
--- a/src/core/scanner.c
+++ b/src/core/scanner.c
@@ -2,7 +2,7 @@
*: File: ./src/core/scanner.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/scanner.h b/src/core/scanner.h
index ffab5b8..5156430 100644
--- a/src/core/scanner.h
+++ b/src/core/scanner.h
@@ -2,7 +2,7 @@
*: File: ./src/core/scanner.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/scope.c b/src/core/scope.c
index 7dfe792..1d724cb 100644
--- a/src/core/scope.c
+++ b/src/core/scope.c
@@ -2,7 +2,7 @@
*: File: ./src/core/scope.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/scope.h b/src/core/scope.h
index 32e13b7..1624ef8 100644
--- a/src/core/scope.h
+++ b/src/core/scope.h
@@ -2,7 +2,7 @@
*: File: ./src/core/scope.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/symbol.c b/src/core/symbol.c
index 317d82a..2a3c865 100644
--- a/src/core/symbol.c
+++ b/src/core/symbol.c
@@ -2,7 +2,7 @@
*: File: ./src/core/symbol.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/symbol.h b/src/core/symbol.h
index 04bf6fc..b3b3b29 100644
--- a/src/core/symbol.h
+++ b/src/core/symbol.h
@@ -2,7 +2,7 @@
*: File: ./src/core/symbol.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/token.c b/src/core/token.c
index 1c9699e..e8a6d9b 100644
--- a/src/core/token.c
+++ b/src/core/token.c
@@ -2,7 +2,7 @@
*: File: ./src/core/token.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/core/token.h b/src/core/token.h
index 3947de8..cb41335 100644
--- a/src/core/token.h
+++ b/src/core/token.h
@@ -2,7 +2,7 @@
*: File: ./src/core/token.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/array.c b/src/data/array.c
index 235cab4..1602bbb 100644
--- a/src/data/array.c
+++ b/src/data/array.c
@@ -2,7 +2,7 @@
*: File: ./src/data/array.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/array.h b/src/data/array.h
index d61f657..c2e9b6a 100644
--- a/src/data/array.h
+++ b/src/data/array.h
@@ -2,7 +2,7 @@
*: File: ./src/data/array.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/dat.c b/src/data/dat.c
index e1ea5f6..ce86d02 100644
--- a/src/data/dat.c
+++ b/src/data/dat.c
@@ -2,7 +2,7 @@
*: File: ./src/data/dat.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/dat.h b/src/data/dat.h
index 9e15544..5e009d0 100644
--- a/src/data/dat.h
+++ b/src/data/dat.h
@@ -2,7 +2,7 @@
*: File: ./src/data/dat.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/hash.c b/src/data/hash.c
index 42eab39..2f41b44 100644
--- a/src/data/hash.c
+++ b/src/data/hash.c
@@ -2,7 +2,7 @@
*: File: ./src/data/hash.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/hash.h b/src/data/hash.h
index a7ed0ca..a292221 100644
--- a/src/data/hash.h
+++ b/src/data/hash.h
@@ -2,7 +2,7 @@
*: File: ./src/data/hash.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/list.c b/src/data/list.c
index 2cc3836..7c139b8 100644
--- a/src/data/list.c
+++ b/src/data/list.c
@@ -2,7 +2,7 @@
*: File: ./src/data/list.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/list.h b/src/data/list.h
index 399c624..7c696b3 100644
--- a/src/data/list.h
+++ b/src/data/list.h
@@ -2,7 +2,7 @@
*: File: ./src/data/list.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/map.c b/src/data/map.c
index ff2da6e..23dea9d 100644
--- a/src/data/map.c
+++ b/src/data/map.c
@@ -2,7 +2,7 @@
*: File: ./src/data/map.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/map.h b/src/data/map.h
index 0f741ca..22732be 100644
--- a/src/data/map.h
+++ b/src/data/map.h
@@ -2,7 +2,7 @@
*: File: ./src/data/map.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/queue.c b/src/data/queue.c
index 3be0df8..688c974 100644
--- a/src/data/queue.c
+++ b/src/data/queue.c
@@ -2,7 +2,7 @@
*: File: ./src/data/queue.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/queue.h b/src/data/queue.h
index cca85e0..dc84a72 100644
--- a/src/data/queue.h
+++ b/src/data/queue.h
@@ -2,7 +2,7 @@
*: File: ./src/data/queue.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/stack.c b/src/data/stack.c
index fb8cf4b..9c22cc2 100644
--- a/src/data/stack.c
+++ b/src/data/stack.c
@@ -2,7 +2,7 @@
*: File: ./src/data/stack.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/stack.h b/src/data/stack.h
index 14688d6..961bb06 100644
--- a/src/data/stack.h
+++ b/src/data/stack.h
@@ -2,7 +2,7 @@
*: File: ./src/data/stack.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/tree.c b/src/data/tree.c
index 1f7e250..e8098f5 100644
--- a/src/data/tree.c
+++ b/src/data/tree.c
@@ -2,7 +2,7 @@
*: File: ./src/data/tree.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/tree.h b/src/data/tree.h
index c9bbbc2..f62135f 100644
--- a/src/data/tree.h
+++ b/src/data/tree.h
@@ -2,7 +2,7 @@
*: File: ./src/data/tree.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/tupel.c b/src/data/tupel.c
index d922216..6c85743 100644
--- a/src/data/tupel.c
+++ b/src/data/tupel.c
@@ -2,7 +2,7 @@
*: File: ./src/data/tupel.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/tupel.h b/src/data/tupel.h
index fd79e84..305ed29 100644
--- a/src/data/tupel.h
+++ b/src/data/tupel.h
@@ -2,7 +2,7 @@
*: File: ./src/data/tupel.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/data/types.h b/src/data/types.h
index 8fa4172..5cf1356 100644
--- a/src/data/types.h
+++ b/src/data/types.h
@@ -2,7 +2,7 @@
*: File: ./src/data/types.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/defines.h b/src/defines.h
index 0848a0b..1cb84c5 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -2,7 +2,7 @@
*: File: ./src/defines.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
@@ -54,7 +54,7 @@
#define ASSEMBLER "yasm"
#define LINKER "cc"
#define SCANNER_BUFSIZE 512
-#define URL "<https://github.com/snonux/fype>"
+#define URL "<https://codeberg.org/snonux/fype>"
#define VERSION "Superalpha Build"
diff --git a/src/fype.c b/src/fype.c
index 6cfb874..ebd906d 100644
--- a/src/fype.c
+++ b/src/fype.c
@@ -2,7 +2,7 @@
*: File: ./src/fype.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/fype.h b/src/fype.h
index 989d44e..d7a805c 100644
--- a/src/fype.h
+++ b/src/fype.h
@@ -2,7 +2,7 @@
*: File: ./src/fype.h
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*:
diff --git a/src/main.c b/src/main.c
index dc577e4..816af1e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,7 +2,7 @@
*: File: ./src/main.c
*: A simple interpreter
*:
- *: WWW : https://github.com/snonux/fype
+ *: WWW : https://codeberg.org/snonux/fype
*: AUTHOR : http://buetow.org
*: E-Mail : fype at dev.buetow.org
*: