[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.971 and 1.972

version 1.971, 2020/03/31 16:53:23 version 1.972, 2020/03/31 17:14:41
Line 1048 
Line 1048 
         char            *name;          char            *name;
         char            *value;          char            *value;
   
           int              flags;
   #define ENVIRON_HIDDEN 0x1
   
         RB_ENTRY(environ_entry) entry;          RB_ENTRY(environ_entry) entry;
 };  };
   
Line 1957 
Line 1960 
 struct environ_entry *environ_next(struct environ_entry *);  struct environ_entry *environ_next(struct environ_entry *);
 void    environ_copy(struct environ *, struct environ *);  void    environ_copy(struct environ *, struct environ *);
 struct environ_entry *environ_find(struct environ *, const char *);  struct environ_entry *environ_find(struct environ *, const char *);
 void printflike(3, 4) environ_set(struct environ *, const char *, const char *,  void printflike(4, 5) environ_set(struct environ *, const char *, int,
             ...);              const char *, ...);
 void    environ_clear(struct environ *, const char *);  void    environ_clear(struct environ *, const char *);
 void    environ_put(struct environ *, const char *);  void    environ_put(struct environ *, const char *, int);
 void    environ_unset(struct environ *, const char *);  void    environ_unset(struct environ *, const char *);
 void    environ_update(struct options *, struct environ *, struct environ *);  void    environ_update(struct options *, struct environ *, struct environ *);
 void    environ_push(struct environ *);  void    environ_push(struct environ *);

Legend:
Removed from v.1.971  
changed lines
  Added in v.1.972