/** * Forth main entry-point * * Created on 2021/11/13. */ #ifndef FORTH_H #define FORTH_H #include #include #include "fh_config.h" #include "fh_error.h" struct fh_thread_s; enum fh_error fh_init(struct fh_thread_s *fh); enum fh_error fh_process_line(struct fh_thread_s *fh, const char *linebuf); #endif //FORTH_H