aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/legal2.c16
-rw-r--r--FICS/legal2.h10
2 files changed, 26 insertions, 0 deletions
diff --git a/FICS/legal2.c b/FICS/legal2.c
new file mode 100644
index 0000000..528814a
--- /dev/null
+++ b/FICS/legal2.c
@@ -0,0 +1,16 @@
+#include "legal2.h"
+
+const char legalNotice2[] =
+ "Copyright (c) 2023, 2024 Markus Uhlin <maxxe@rpblc.net>\n"
+ "\n"
+ "Permission to use, copy, modify, and distribute this software for any\n"
+ "purpose with or without fee is hereby granted, provided that the above\n"
+ "copyright notice and this permission notice appear in all copies.\n"
+ "\n"
+ "THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\n"
+ "WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n"
+ "MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\n"
+ "ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n"
+ "WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n"
+ "ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n"
+ "OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n";
diff --git a/FICS/legal2.h b/FICS/legal2.h
new file mode 100644
index 0000000..0ee2173
--- /dev/null
+++ b/FICS/legal2.h
@@ -0,0 +1,10 @@
+#ifndef FICS_LEGAL2_H_
+#define FICS_LEGAL2_H_
+
+#include "common.h"
+
+__FICS_BEGIN_DECLS
+extern const char legalNotice2[];
+__FICS_END_DECLS
+
+#endif