view saveload.h @ 75:0083b2f7b3c7

Partially working implementation of List. Modified build scripts to allow use of other compilers. Fixed some bugs involving method implementations on different types returning different numbers of outputs. Added Fold to the 'builtins' in the comipler.
author Mike Pavone <pavone@retrodev.com>
date Tue, 06 Jul 2010 07:52:59 -0400
parents 76568becd6d6
children
line wrap: on
line source

#ifndef	SAVELOAD_H__
#define	SAVELOAD_H__

#include "structs.h"

void save_program(program * prog, char * filename);
program * load_program(char * filename);
program * new_program(int def_storage, int comp_storage);

#endif //SAVELOAD_H__