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

Diff for /mandoc/term_ascii.c between version 1.12 and 1.13

version 1.12, 2011/01/25 17:32:04 version 1.13, 2011/05/14 17:54:42
Line 33 
Line 33 
   
 static  double            ascii_hspan(const struct termp *,  static  double            ascii_hspan(const struct termp *,
                                 const struct roffsu *);                                  const struct roffsu *);
 static  size_t            ascii_width(const struct termp *, char);  static  size_t            ascii_width(const struct termp *, int);
 static  void              ascii_advance(struct termp *, size_t);  static  void              ascii_advance(struct termp *, size_t);
 static  void              ascii_begin(struct termp *);  static  void              ascii_begin(struct termp *);
 static  void              ascii_end(struct termp *);  static  void              ascii_end(struct termp *);
 static  void              ascii_endline(struct termp *);  static  void              ascii_endline(struct termp *);
 static  void              ascii_letter(struct termp *, char);  static  void              ascii_letter(struct termp *, int);
   
   
 void *  void *
Line 84  ascii_alloc(char *outopts)
Line 84  ascii_alloc(char *outopts)
   
 /* ARGSUSED */  /* ARGSUSED */
 static size_t  static size_t
 ascii_width(const struct termp *p, char c)  ascii_width(const struct termp *p, int c)
 {  {
   
         return(1);          return(1);
Line 101  ascii_free(void *arg)
Line 101  ascii_free(void *arg)
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 ascii_letter(struct termp *p, char c)  ascii_letter(struct termp *p, int c)
 {  {
   
         /* LINTED */          /* LINTED */

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

CVSweb