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

Diff for /mandoc/term.h between version 1.97 and 1.98

version 1.97, 2013/12/25 00:39:31 version 1.98, 2014/03/30 19:47:48
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * 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 57  struct termp {
Line 57  struct termp {
         int               mdocstyle;    /* imitate mdoc(7) output */          int               mdocstyle;    /* imitate mdoc(7) output */
         size_t            defindent;    /* Default indent for text. */          size_t            defindent;    /* Default indent for text. */
         size_t            defrmargin;   /* Right margin of the device. */          size_t            defrmargin;   /* Right margin of the device. */
           size_t            lastrmargin;  /* Right margin before the last ll. */
         size_t            rmargin;      /* Current right margin. */          size_t            rmargin;      /* Current right margin. */
         size_t            maxrmargin;   /* Max right margin. */          size_t            maxrmargin;   /* Max right margin. */
         size_t            maxcols;      /* Max size of buf. */          size_t            maxcols;      /* Max size of buf. */
Line 94  struct termp {
Line 95  struct termp {
         void            (*end)(struct termp *);          void            (*end)(struct termp *);
         void            (*endline)(struct termp *);          void            (*endline)(struct termp *);
         void            (*advance)(struct termp *, size_t);          void            (*advance)(struct termp *, size_t);
           void            (*setwidth)(struct termp *, size_t);
         size_t          (*width)(const struct termp *, int);          size_t          (*width)(const struct termp *, int);
         double          (*hspan)(const struct termp *,          double          (*hspan)(const struct termp *,
                                 const struct roffsu *);                                  const struct roffsu *);
Line 112  void    term_begin(struct termp *, term_margin, 
Line 114  void    term_begin(struct termp *, term_margin, 
                         term_margin, const void *);                          term_margin, const void *);
 void              term_end(struct termp *);  void              term_end(struct termp *);
   
   void              term_setwidth(struct termp *, size_t);
 size_t            term_hspan(const struct termp *,  size_t            term_hspan(const struct termp *,
                         const struct roffsu *);                          const struct roffsu *);
 size_t            term_vspan(const struct termp *,  size_t            term_vspan(const struct termp *,

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98

CVSweb