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/68ddeb3e17d10c22a17e3dc051b1cb676bcf1af4/fh_error.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
Trying to build a forth runtime in C
 
 
 
forth/fh_error.h

31 lines
527 B

/**
* Forth errors
*
* Created on 2021/11/13.
*/
#ifndef FORTH_FH_ERROR_H
#define FORTH_FH_ERROR_H
/** Error codes */
enum fh_error {
FH_OK = 0,
FH_ERR_CS_OVERFLOW,
FH_ERR_DS_OVERFLOW,
FH_ERR_RS_OVERFLOW,
FH_ERR_CS_UNDERFLOW,
FH_ERR_DS_UNDERFLOW,
FH_ERR_RS_UNDERFLOW,
FH_ERR_HEAP_FULL,
FH_ERR_DICT_FULL,
FH_ERR_COMPILE_FULL,
FH_ERR_NAME_TOO_LONG,
FH_ERR_INVALID_STATE,
FH_ERR_INTERNAL,
FH_ERR_UNKNOWN_WORD,
FH_ERR_MAX,
};
const char *fherr_name(enum fh_error e);
#endif //FORTH_FH_ERROR_H