nulleric
/Fix-a-Fork
/amendments
/25
Add copyright headers
eric made amendment 25 about 1 year ago
--- main.c Fri Nov 10 17:07:12 2023
+++ main.c Sat Nov 11 10:22:16 2023
@@ -1,3 +1,7 @@
+/*
+ Copyright Eric Helgeson 2023.
+*/
+
#include "main.h"
#include <Script.h>
--- main.h Fri Nov 10 16:50:28 2023
+++ main.h Sat Nov 11 10:23:15 2023
@@ -1,3 +1,9 @@
+/*
+ Copyright Eric Helgeson 2023.
+*/
+#ifndef __MAIN_H__
+#define __MAIN_H__
+
#include <Files.h>
#include <StandardFile.h>
#include <Events.h>
@@ -30,4 +36,5 @@ Boolean isMar();
Boolean isCpt();
Boolean isDsk_1024();
Boolean CheckFileExt(const char *ext);
-short strlen(const char *str);
+short strlen(const char *str);
+#endif