ref(ai): move unfitting functions out of window.c; create aiwin.c
Some checks failed
CI Code / Check coding style (pull_request) Failing after 34s
CI Code / Check spelling (pull_request) Successful in 22s
CI Code / Linux (arch) (pull_request) Failing after 2m57s
CI Code / Linux (ubuntu) (pull_request) Failing after 3m16s
CI Code / Linux (debian) (pull_request) Failing after 6m16s
CI Code / Code Coverage (pull_request) Successful in 7m12s

This commit is contained in:
2026-04-30 18:01:24 +00:00
parent 9c8ad57b59
commit cff05ca802
6 changed files with 73 additions and 58 deletions

View File

@@ -101,10 +101,5 @@ char* win_quote_autocomplete(ProfWin* window, const char* const input, gboolean
char* get_show_char(prof_enc_t encryption_mode);
char* get_enc_char(prof_enc_t enc_mode, const char* alt);
// AI window functions
void win_ai_free(ProfAiWin* win);
char* aiwin_get_string(ProfAiWin* win);
void aiwin_display_response(ProfAiWin* win, const char* response);
void aiwin_display_error(ProfAiWin* win, const char* error_msg);
#endif