tb Allow the user to kill current process in interactive mode (Ctrl+S)

This commit is contained in:
2025-09-20 12:41:54 +02:00
parent a24b1fc677
commit 222e846881
4 changed files with 23 additions and 8 deletions

View File

@ -33,6 +33,6 @@ typedef struct {
Token *tokens;
} Tokenizer;
bool interp_runstring(const char *string, InterpResult **res, bool logcmds);
bool interp_runstring(const char *string, InterpResult **res, bool logcmds, bool interactive);
#endif // TB_INTERP_H_