From c6c23fbf843f8a22abc9c831883663f5a10d68d3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 28 Mar 2008 06:56:37 +0000 Subject: [PATCH] Renamed some files, cleaned up the lack of headers on source files. --- LICENSE => LICENSE.txt | 0 TODO => TODO.txt | 0 mojopatch.c | 13 ++++++++----- platform.h | 7 +++++++ platform_unix.c | 7 +++++++ platform_win32.c | 7 +++++++ ui.c | 7 +++++++ ui.h | 7 +++++++ ui_carbon.c | 7 +++++++ ui_stdio.c | 7 +++++++ 10 files changed, 57 insertions(+), 5 deletions(-) rename LICENSE => LICENSE.txt (100%) rename TODO => TODO.txt (100%) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/TODO b/TODO.txt similarity index 100% rename from TODO rename to TODO.txt diff --git a/mojopatch.c b/mojopatch.c index 4f343f8..b1369cb 100644 --- a/mojopatch.c +++ b/mojopatch.c @@ -1,9 +1,12 @@ -/* - *---------------------------------------------------------------------------- +/** + * MojoPatch; a tool for updating data in the field. * - * mojopatch - * Copyright (C) 2003 Ryan C. Gordon. + * Please see the file LICENSE.txt in the source's root directory. * + * This file written by Ryan C. Gordon. + */ + +/* *---------------------------------------------------------------------------- * * (Insert documentation here.) @@ -17,7 +20,7 @@ * catastrophic bugs. Its method is brute-force, at best. Use at your * own risk. Don't eat yellow snow. * - * Please see the file LICENSE in the root of the source tree. + * Please see the file LICENSE.txt in the root of the source tree. * * Send patches, improvements, suggestions, etc to Ryan: * icculus@icculus.org. diff --git a/platform.h b/platform.h index 686541a..107e40f 100644 --- a/platform.h +++ b/platform.h @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #ifndef _INCL_PLATFORM_H_ #define _INCL_PLATFORM_H_ diff --git a/platform_unix.c b/platform_unix.c index a46f481..5f696ac 100644 --- a/platform_unix.c +++ b/platform_unix.c @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #include #include diff --git a/platform_win32.c b/platform_win32.c index 818bcdc..1b73267 100644 --- a/platform_win32.c +++ b/platform_win32.c @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #include #include diff --git a/ui.c b/ui.c index fbf0b6c..d7200f4 100644 --- a/ui.c +++ b/ui.c @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #include #include diff --git a/ui.h b/ui.h index 956bd5d..c2cd0b4 100644 --- a/ui.h +++ b/ui.h @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #ifndef _INCL_UI_H_ #define _INCL_UI_H_ diff --git a/ui_carbon.c b/ui_carbon.c index b4fea7a..744f881 100644 --- a/ui_carbon.c +++ b/ui_carbon.c @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #if !PLATFORM_MACOSX int ui_init_carbon(void) { return(0); } /* not implemented if not MacOS. */ diff --git a/ui_stdio.c b/ui_stdio.c index cdb6872..1af7ff6 100644 --- a/ui_stdio.c +++ b/ui_stdio.c @@ -1,3 +1,10 @@ +/** + * MojoPatch; a tool for updating data in the field. + * + * Please see the file LICENSE.txt in the source's root directory. + * + * This file written by Ryan C. Gordon. + */ #include #include