/* Wpc (1996) */ /* */ /* Author : Marie Aimar */ /* File : file.h */ #ifndef _FILE_ #define _FILE_ extern void new_file(FILE* newinput); extern FILE* open_file(char *,char *); extern void close_file(FILE*); extern void compute(FILE *newoutput); #endif