www.pudn.com > 12cocorc.zip > CRF.H


#ifndef CRF_MODULE 
#define CRF_MODULE 
 
void GenCode(FILE *out, char *fmt, ...); 
void SymCharName(unsigned char c, char *asciiname); 
 
FILE *OpenFile(char *name, char *opt, int GenError); 
 
void InitFrameVars(); 
void SetupFrameVars(); 
void GenScanner(); 
void GenParser(); 
void GenHeaders(); 
void GenCompiler(); 
 
extern char compiler_name[]; 
extern char module_prefix[]; 
extern char source_name[]; 
 
#if !(__MSDOS__ || MSDOS || WIN32) 
int stricmp(char *s1,char *s2); 
#endif 
 
#endif