/*
* The Spar Library - modular math parser
* Copyright (C) 2000,2001 Davide Angelocola <davide178@inwind.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
/*
* This is a template module: copy into another file and write your own module
* in C/C++. Substitute the MODULE_NAME, MODULE_DESC, MODULE_VER with your
* module info. At the end, don't forget to export your module structure
* with the macro MODULE_EXPORT(your_module_struct)!
*
*/
#include <spar/module.h>
#include <spar/writer.h>
/* nt>
/*
* Module infos: sustitute with the yours one!
*/
#define MODULE_NAME "put here the module name"
#define MODULE_DESC "put here a brief description"
#define MODULE_VER "mod. ver."
/*
* This is the main module function that must be ever declared (it's the
* module entry point). Use the MODULE_MAIN macro to do this.
*
* Here you can add your module main code, call Spar functions or your functions
*/
MODULE_MAIN
{
writeln ("This is a test!");
return 0;
}
/*
* The module structure
* It's needed by the modules manager
*/
struct module module = { MODULE_NAME, MODULE_DESC, MODULE_VAR, module_main };
/*
* Export the module structure
*/
MODULE_EXPORT(module);
ORT(module);