[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.1133 and 1.1134

version 1.1133, 2021/08/21 18:39:07 version 1.1134, 2021/08/21 20:46:43
Line 1369 
Line 1369 
                 char            *string;                  char            *string;
                 struct cmd_list *cmdlist;                  struct cmd_list *cmdlist;
         };          };
           char                    *cached;
         TAILQ_ENTRY(args_value)  entry;          TAILQ_ENTRY(args_value)  entry;
 };  };
   
Line 2196 
Line 2197 
 int             tty_keys_next(struct tty *);  int             tty_keys_next(struct tty *);
   
 /* arguments.c */  /* arguments.c */
 void             args_set(struct args *, u_char, const char *);  void             args_set(struct args *, u_char, struct args_value *);
 struct args     *args_create(void);  struct args     *args_create(void);
 struct args     *args_parse(const struct args_parse *, struct args_value *,  struct args     *args_parse(const struct args_parse *, struct args_value *,
                      u_int);                       u_int);
Line 2210 
Line 2211 
 u_char           args_first(struct args *, struct args_entry **);  u_char           args_first(struct args *, struct args_entry **);
 u_char           args_next(struct args_entry **);  u_char           args_next(struct args_entry **);
 u_int            args_count(struct args *);  u_int            args_count(struct args *);
   struct args_value *args_value(struct args *, u_int);
 const char      *args_string(struct args *, u_int);  const char      *args_string(struct args *, u_int);
 struct args_value *args_first_value(struct args *, u_char);  struct args_value *args_first_value(struct args *, u_char);
 struct args_value *args_next_value(struct args_value *);  struct args_value *args_next_value(struct args_value *);

Legend:
Removed from v.1.1133  
changed lines
  Added in v.1.1134