MuckyFoot-UrbanChaos/MuckyBasic/comp.h
2017-05-20 11:14:17 +10:00

19 lines
185 B
C

//
// The compiler.
//
#ifndef _COMP_
#define _COMP_
//
// Compiles the input file to produce the output file.
//
SLONG COMP_do(CBYTE *fname_input, CBYTE *fname_output);
#endif