This commit is contained in:
Paul 2000-12-11 19:43:04 +00:00
parent 1ed7bf8222
commit f6a49831f1
2 changed files with 104 additions and 0 deletions

56
Utils/Scripter/prepro.cpp Normal file
View file

@ -0,0 +1,56 @@
/*=========================================================================
prepro.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
#include "prepro.h"
/* Std Lib
------- */
#include <stdio.h>
#include <string.h>
/* Data
---- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Function Prototypes
------------------- */
/*----------------------------------------------------------------------
Vars
---- */
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
/*===========================================================================
end */

48
Utils/Scripter/prepro.h Normal file
View file

@ -0,0 +1,48 @@
/*=========================================================================
prepro.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __PREPRO_H__
#define __PREPRO_H__
/*----------------------------------------------------------------------
Includes
-------- */
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
extern int preprocessorCmd(char *_cmd);
/*---------------------------------------------------------------------- */
#endif /* __PREPRO_H__ */
/*===========================================================================
end */