git » unicorn-sparkle-basic.git » commit 6b3968c

floating point linums and license

author Alan Dipert
2024-01-20 05:41:38 UTC
committer Alan Dipert
2024-01-20 05:41:38 UTC
parent ca89f8ed54cbe5d327aba11b8c3116ee518f17e6

floating point linums and license

main.c +7 -0
parse.c +7 -0
parse.h +7 -0
usbasic.l +7 -0
usbasic.y +7 -0

diff --git a/main.c b/main.c
index a534220..55e628c 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,10 @@
+/*
+ * This file is part of Unicorn Sparkle Basic and is released under
+ * CC0 1.0 Universal License.  See LICENSE.txt file or
+ * https://creativecommons.org/publicdomain/zero/1.0/ for full license
+ * text.
+ */
+
 #include "parse.h"
 #include <stdio.h>
 
diff --git a/parse.c b/parse.c
index ce54cc6..d161747 100644
--- a/parse.c
+++ b/parse.c
@@ -1,3 +1,10 @@
+/*
+ * This file is part of Unicorn Sparkle Basic and is released under
+ * CC0 1.0 Universal License.  See LICENSE.txt file or
+ * https://creativecommons.org/publicdomain/zero/1.0/ for full license
+ * text.
+ */
+
 #include "parse.h"
 #include <stdio.h>
 
diff --git a/parse.h b/parse.h
index 6813b6f..a760095 100644
--- a/parse.h
+++ b/parse.h
@@ -1,3 +1,10 @@
+/*
+ * This file is part of Unicorn Sparkle Basic and is released under
+ * CC0 1.0 Universal License.  See LICENSE.txt file or
+ * https://creativecommons.org/publicdomain/zero/1.0/ for full license
+ * text.
+ */
+
 #include "usbasic.tab.h"
 #include <stdio.h>
 #include <stdlib.h>
diff --git a/usbasic.l b/usbasic.l
index 007807f..1c2c951 100644
--- a/usbasic.l
+++ b/usbasic.l
@@ -1,3 +1,10 @@
+/*
+ * This file is part of Unicorn Sparkle Basic and is released under
+ * CC0 1.0 Universal License.  See LICENSE.txt file or
+ * https://creativecommons.org/publicdomain/zero/1.0/ for full license
+ * text.
+ */
+
 %{
 #include "usbasic.tab.h"
 %}
diff --git a/usbasic.y b/usbasic.y
index 75d973e..97b7453 100644
--- a/usbasic.y
+++ b/usbasic.y
@@ -1,3 +1,10 @@
+/*
+ * This file is part of Unicorn Sparkle Basic and is released under
+ * CC0 1.0 Universal License.  See LICENSE.txt file or
+ * https://creativecommons.org/publicdomain/zero/1.0/ for full license
+ * text.
+ */
+
 %{
 #include <stdio.h>
 #include <stdlib.h>