view saveload.h @ 169:fd06fb07762a

Basic inlining of arithmetic and comparison operations on integer types
author Mike Pavone <pavone@retrodev.com>
date Sun, 08 May 2011 01:37:44 -0700
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__