root/CRB.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


#ifndef PUBLIC_CRB_H_INCLUDED
#define PUBLIC_CRB_H_INCLUDED
#include <stdio.h>

typedef struct CRB_Interpreter_tag CRB_Interpreter;

CRB_Interpreter *CRB_create_interpreter(void);
void CRB_compile(CRB_Interpreter *interpreter, FILE *fp);
void CRB_interpret(CRB_Interpreter *interpreter);
void CRB_dispose_interpreter(CRB_Interpreter *interpreter);

#endif /* PUBLIC_CRB_H_INCLUDED */

/* [<][>][^][v][top][bottom][index][help] */