[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.1196 and 1.1197

version 1.1196, 2023/04/17 18:22:24 version 1.1197, 2023/04/25 09:31:50
Line 2296 
Line 2296 
 void    tty_cursor(struct tty *, u_int, u_int);  void    tty_cursor(struct tty *, u_int, u_int);
 void    tty_clipboard_query(struct tty *);  void    tty_clipboard_query(struct tty *);
 void    tty_putcode(struct tty *, enum tty_code_code);  void    tty_putcode(struct tty *, enum tty_code_code);
 void    tty_putcode1(struct tty *, enum tty_code_code, int);  void    tty_putcode_i(struct tty *, enum tty_code_code, int);
 void    tty_putcode2(struct tty *, enum tty_code_code, int, int);  void    tty_putcode_ii(struct tty *, enum tty_code_code, int, int);
 void    tty_putcode3(struct tty *, enum tty_code_code, int, int, int);  void    tty_putcode_iii(struct tty *, enum tty_code_code, int, int, int);
 void    tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);  void    tty_putcode_s(struct tty *, enum tty_code_code, const char *);
 void    tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *,  void    tty_putcode_ss(struct tty *, enum tty_code_code, const char *,
             const void *);              const char *);
 void    tty_puts(struct tty *, const char *);  void    tty_puts(struct tty *, const char *);
 void    tty_putc(struct tty *, u_char);  void    tty_putc(struct tty *, u_char);
 void    tty_putn(struct tty *, const void *, size_t, u_int);  void    tty_putn(struct tty *, const void *, size_t, u_int);
Line 2365 
Line 2365 
 void             tty_term_free_list(char **, u_int);  void             tty_term_free_list(char **, u_int);
 int              tty_term_has(struct tty_term *, enum tty_code_code);  int              tty_term_has(struct tty_term *, enum tty_code_code);
 const char      *tty_term_string(struct tty_term *, enum tty_code_code);  const char      *tty_term_string(struct tty_term *, enum tty_code_code);
 const char      *tty_term_string1(struct tty_term *, enum tty_code_code, int);  const char      *tty_term_string_i(struct tty_term *, enum tty_code_code, int);
 const char      *tty_term_string2(struct tty_term *, enum tty_code_code, int,  const char      *tty_term_string_ii(struct tty_term *, enum tty_code_code, int,
                      int);                       int);
 const char      *tty_term_string3(struct tty_term *, enum tty_code_code, int,  const char      *tty_term_string_iii(struct tty_term *, enum tty_code_code, int,
                      int, int);                       int, int);
 const char      *tty_term_ptr1(struct tty_term *, enum tty_code_code,  const char      *tty_term_string_s(struct tty_term *, enum tty_code_code,
                      const void *);                       const char *);
 const char      *tty_term_ptr2(struct tty_term *, enum tty_code_code,  const char      *tty_term_string_ss(struct tty_term *, enum tty_code_code,
                      const void *, const void *);                       const char *, const char *);
 int              tty_term_number(struct tty_term *, enum tty_code_code);  int              tty_term_number(struct tty_term *, enum tty_code_code);
 int              tty_term_flag(struct tty_term *, enum tty_code_code);  int              tty_term_flag(struct tty_term *, enum tty_code_code);
 const char      *tty_term_describe(struct tty_term *, enum tty_code_code);  const char      *tty_term_describe(struct tty_term *, enum tty_code_code);

Legend:
Removed from v.1.1196  
changed lines
  Added in v.1.1197