Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/forth/src/commit/cf1a0cd99bb7d277da7ce680db9c2dfe1fe74c61/include/forth.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
Trying to build a forth runtime in C
 
 
 
forth/include/forth.h

21 lines
347 B

/**
* Forth main entry-point
*
* Created on 2021/11/13.
*/
#ifndef FORTH_H
#define FORTH_H
#include <stdint.h>
#include <stdbool.h>
#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