aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-11-27 01:20:12 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2024-11-27 01:20:12 +0100
commit3dc3da356c2a5c2bb0d84f4d5f0acc2a6597f316 (patch)
treec16c5cced27a3e5597a9316d495eb460885de4e1
parenteda3e3c4e415c86281a9ad7c6d7ca74663684ff2 (diff)
Added new files
-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