summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-11-02 20:24:25 +0200
committerPaul Buetow <paul@buetow.org>2021-11-02 20:24:25 +0200
commitae0c64ab5d79bc52ca0e4f233ad8f7eb3f811d97 (patch)
treec152cc072d64b982aa3c0486816960bc06ecc015 /src/core
parent2f8dccca0ab3ea162fe3aa09e84a9f44c4e1de1e (diff)
move to codeberg
Diffstat (limited to 'src/core')
-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
20 files changed, 20 insertions, 20 deletions
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
*: