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

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

version 1.5, 2010/12/29 01:16:57 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)  
 {  
   
 }  
   
 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 69  tbl_read(struct tbl *tbl, int ln, const char *p, int o
Line 50  tbl_read(struct tbl *tbl, int ln, const char *p, int o
         switch (tbl->part) {          switch (tbl->part) {
         case (TBL_PART_OPTS):          case (TBL_PART_OPTS):
                 return(tbl_option(tbl, ln, p) ? ROFF_IGN : ROFF_ERR);                  return(tbl_option(tbl, ln, p) ? ROFF_IGN : ROFF_ERR);
         default:          case (TBL_PART_LAYOUT):
                   return(tbl_layout(tbl, ln, p) ? ROFF_IGN : ROFF_ERR);
           case (TBL_PART_DATA):
                 break;                  break;
         }          }
   
         return(ROFF_CONT);          /*
            * FIXME: allow the original string to slip through for the time
            * being.
            */
           return(tbl_data(tbl, ln, p) ? ROFF_CONT : ROFF_ERR);
 }  }
   
 struct tbl *  struct tbl *
Line 81  tbl_alloc(void *data, const mandocmsg msg)
Line 68  tbl_alloc(void *data, const mandocmsg msg)
 {  {
         struct tbl      *p;          struct tbl      *p;
   
         p = mandoc_malloc(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) {
                   rp = p->first_row;
                   p->first_row = rp->next;
                   while (rp->first) {
                           cp = rp->first;
                           rp->first = cp->next;
                           free(cp);
                   }
                   free(rp);
           }
   
           while (p->first_span) {
                   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);
           }
   
         free(p);          free(p);
 }  }
   
 void  void
 tbl_reset(struct tbl *tbl)  tbl_restart(struct tbl *tbl)
 {  {
   
         tbl_clear(tbl);          tbl->part = TBL_PART_LAYOUT;
         tbl_init(tbl);  
 }  }
   

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

CVSweb