1 #ifndef COMPILE_H
2 #define COMPILE_H
3 
4 #include <Rinternals.h>
5 
6 SEXP compile_file(SEXP file, SEXP options);
7 SEXP compile_data(SEXP data, SEXP options);
8 
9 #endif
10