[BACK]Return to layout-custom.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/layout-custom.c between version 1.1 and 1.2

version 1.1, 2010/06/29 03:30:13 version 1.2, 2011/06/05 10:53:05
Line 23 
Line 23 
   
 #include "tmux.h"  #include "tmux.h"
   
   struct layout_cell     *layout_find_bottomright(struct layout_cell *);
 u_short                 layout_checksum(const char *);  u_short                 layout_checksum(const char *);
 int                     layout_append(struct layout_cell *, char *, size_t);  int                     layout_append(struct layout_cell *, char *, size_t);
 struct layout_cell     *layout_construct(struct layout_cell *, const char **);  struct layout_cell     *layout_construct(struct layout_cell *, const char **);
 void                    layout_assign(struct window_pane **, struct layout_cell *);  void                    layout_assign(struct window_pane **, struct layout_cell *);
   
   /* Find the bottom-right cell. */
   struct layout_cell *
   layout_find_bottomright(struct layout_cell *lc)
   {
           if (lc->type == LAYOUT_WINDOWPANE)
                   return (lc);
           lc = TAILQ_LAST(&lc->cells, layout_cells);
           return (layout_find_bottomright(lc));
   }
   
 /* Calculate layout checksum. */  /* Calculate layout checksum. */
 u_short  u_short

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2