Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Renamed some files, cleaned up the lack of headers on source files.
  • Loading branch information
icculus committed Mar 28, 2008
1 parent aa3e0a1 commit c6c23fb
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
13 changes: 8 additions & 5 deletions 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.)
Expand All @@ -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.
Expand Down
7 changes: 7 additions & 0 deletions 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_
Expand Down
7 changes: 7 additions & 0 deletions 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 <stdio.h>
#include <string.h>
Expand Down
7 changes: 7 additions & 0 deletions 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 <windows.h>
#include <io.h>
Expand Down
7 changes: 7 additions & 0 deletions 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 <stdio.h>
#include <string.h>
Expand Down
7 changes: 7 additions & 0 deletions 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_
Expand Down
7 changes: 7 additions & 0 deletions 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. */
Expand Down
7 changes: 7 additions & 0 deletions 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 <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit c6c23fb

Please sign in to comment.