corentin-soriano commented on code in PR #504: URL: https://github.com/apache/guacamole-server/pull/504#discussion_r1567578142
########## src/terminal/terminal/terminal-priv.h: ########## @@ -656,5 +666,27 @@ void guac_terminal_copy_rows(guac_terminal* terminal, */ void guac_terminal_flush(guac_terminal* terminal); +/** + * Determination of part of word + * Match like this pattern : [0-9\/A-Za-z_\~\&\-\.\?\\] + */ +bool guac_terminal_is_part_of_word(int ascii_char); + +/** + * Determination of blank + * Match like this pattern : [\0\ ] + */ +bool guac_terminal_is_blank(int ascii_char); + +/** + * Get the char (int ASCII code) at the row/col requested. + */ +int guac_terminal_get_char(guac_terminal* terminal, int row, int col); + +/** + * Selection on double click event + */ +void guac_terminal_double_click(guac_terminal* terminal, int row, int col); + Review Comment: - Declarations removed from header file. - Functions marked as `static`. - Function documentation moved to `terminal.c`. - Improved documentation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org