[BACK]Return to tbl.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/tbl.c between version 1.9 and 1.10

version 1.9, 2010/12/30 09:34:07 version 1.10, 2010/12/31 14:52:41
Line 25 
Line 25 
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "libroff.h"  #include "libroff.h"
   
 static  void             tbl_init(struct tbl *);  
 static  void             tbl_clear(struct tbl *);  
   
 static void  
 tbl_clear(struct tbl *tbl)  
 {  
         struct tbl_row  *rp;  
         struct tbl_cell *cp;  
         struct tbl_span *sp;  
         struct tbl_dat  *dp;  
   
         while (tbl->first_row) {  
                 rp = tbl->first_row;  
                 tbl->first_row = rp->next;  
                 while (rp->first) {  
                         cp = rp->first;  
                         rp->first = cp->next;  
                         free(cp);  
                 }  
                 free(rp);  
         }  
   
         tbl->last_row = NULL;  
   
         while (tbl->first_span) {  
                 sp = tbl->first_span;  
                 tbl->first_span = sp->next;  
                 while (sp->first) {  
                         dp = sp->first;  
                         sp->first = dp->next;  
                         if (dp->string)  
                                 free(dp->string);  
                         free(dp);  
                 }  
                 free(sp);  
         }  
   
         tbl->last_span = NULL;  
 }  
   
 static void  
 tbl_init(struct tbl *tbl)  
 {  
   
         tbl->part = TBL_PART_OPTS;  
         tbl->tab = '\t';  
         tbl->linesize = 12;  
         tbl->decimal = '.';  
 }  
   
 enum rofferr  enum rofferr
 tbl_read(struct tbl *tbl, int ln, const char *p, int offs)  tbl_read(struct tbl *tbl, int ln, const char *p, int offs)
 {  {
Line 121  tbl_alloc(void *data, const mandocmsg msg)
Line 71  tbl_alloc(void *data, const mandocmsg msg)
         p = mandoc_calloc(1, sizeof(struct tbl));          p = mandoc_calloc(1, sizeof(struct tbl));
         p->data = data;          p->data = data;
         p->msg = msg;          p->msg = msg;
         tbl_init(p);          p->part = TBL_PART_OPTS;
           p->tab = '\t';
           p->linesize = 12;
           p->decimal = '.';
         return(p);          return(p);
 }  }
   
 void  void
 tbl_free(struct tbl *p)  tbl_free(struct tbl *p)
 {  {
           struct tbl_row  *rp;
           struct tbl_cell *cp;
           struct tbl_span *sp;
           struct tbl_dat  *dp;
   
         tbl_clear(p);          while (p->first_row) {
         free(p);                  rp = p->first_row;
 }                  p->first_row = rp->next;
                   while (rp->first) {
                           cp = rp->first;
                           rp->first = cp->next;
                           free(cp);
                   }
                   free(rp);
           }
   
 void          while (p->first_span) {
 tbl_reset(struct tbl *tbl)                  sp = p->first_span;
 {                  p->first_span = sp->next;
                   while (sp->first) {
                           dp = sp->first;
                           sp->first = dp->next;
                           if (dp->string)
                                   free(dp->string);
                           free(dp);
                   }
                   free(sp);
           }
   
         tbl_clear(tbl);          free(p);
         tbl_init(tbl);  
 }  }
   
 void  void

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb