[BACK]Return to roff.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/roff.h between version 1.7 and 1.8

version 1.7, 2011/01/04 22:28:17 version 1.8, 2011/03/20 23:36:42
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 25 
Line 25 
         ROFF_SO, /* include another file */          ROFF_SO, /* include another file */
         ROFF_IGN, /* ignore current line */          ROFF_IGN, /* ignore current line */
         ROFF_TBL, /* a table row was successfully parsed */          ROFF_TBL, /* a table row was successfully parsed */
           ROFF_EQN, /* an equation was successfully parsed */
         ROFF_ERR /* badness: puke and stop */          ROFF_ERR /* badness: puke and stop */
 };  };
   
Line 39 
Line 40 
                         char **, size_t *, int, int *);                          char **, size_t *, int, int *);
 void              roff_endparse(struct roff *);  void              roff_endparse(struct roff *);
 const struct tbl_span *roff_span(const struct roff *);  const struct tbl_span *roff_span(const struct roff *);
   const struct eqn *roff_eqn(const struct roff *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8