[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.1058 and 1.1059

version 1.1058, 2020/06/01 09:43:01 version 1.1059, 2020/06/01 19:39:25
Line 1912 
Line 1912 
 #define FORMAT_WINDOW 0x40000000U  #define FORMAT_WINDOW 0x40000000U
 struct format_tree;  struct format_tree;
 struct format_modifier;  struct format_modifier;
   typedef char *(*format_cb)(struct format_tree *);
 const char      *format_skip(const char *, const char *);  const char      *format_skip(const char *, const char *);
 int              format_true(const char *);  int              format_true(const char *);
 struct format_tree *format_create(struct client *, struct cmdq_item *, int,  struct format_tree *format_create(struct client *, struct cmdq_item *, int,
Line 1922 
Line 1923 
                      const char *, ...);                       const char *, ...);
 void             format_add_tv(struct format_tree *, const char *,  void             format_add_tv(struct format_tree *, const char *,
                      struct timeval *);                       struct timeval *);
   void             format_add_cb(struct format_tree *, const char *, format_cb);
 void             format_each(struct format_tree *, void (*)(const char *,  void             format_each(struct format_tree *, void (*)(const char *,
                      const char *, void *), void *);                       const char *, void *), void *);
 char            *format_expand_time(struct format_tree *, const char *);  char            *format_expand_time(struct format_tree *, const char *);

Legend:
Removed from v.1.1058  
changed lines
  Added in v.1.1059