You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
318 B

#ifdef __STDC__
void output_file_append(char *where, long length, char *filename);
void output_file_close(char *filename);
void output_file_create(char *name);
#else /* __STDC__ */
void output_file_append();
void output_file_close();
void output_file_create();
#endif /* __STDC__ */
/* end of output-file.h */