From 3dc3da356c2a5c2bb0d84f4d5f0acc2a6597f316 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Wed, 27 Nov 2024 01:20:12 +0100 Subject: Added new files --- FICS/legal2.c | 16 ++++++++++++++++ FICS/legal2.h | 10 ++++++++++ 2 files changed, 26 insertions(+) create mode 100644 FICS/legal2.c create mode 100644 FICS/legal2.h 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 \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 -- cgit v1.2.3