[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.7 and 1.13

version 1.7, 2010/06/30 12:27:55 version 1.13, 2011/05/14 17:54:42
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010 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 26 
Line 26 
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
   
   #include "mandoc.h"
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
 #include "main.h"  #include "main.h"
   
 static  size_t            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 47  ascii_alloc(char *outopts)
Line 48  ascii_alloc(char *outopts)
         const char      *toks[2];          const char      *toks[2];
         char            *v;          char            *v;
   
         if (NULL == (p = term_alloc(TERMENC_ASCII)))          p = term_alloc(TERMENC_ASCII);
                 return(NULL);  
   
         p->tabwidth = 5;          p->tabwidth = 5;
         p->defrmargin = 78;          p->defrmargin = 78;
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 */
         putchar(c);          putchar(c);
 }  }
   
Line 146  ascii_advance(struct termp *p, size_t len)
Line 147  ascii_advance(struct termp *p, size_t len)
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static size_t  static double
 ascii_hspan(const struct termp *p, const struct roffsu *su)  ascii_hspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           r;          double           r;
Line 180  ascii_hspan(const struct termp *p, const struct roffsu
Line 181  ascii_hspan(const struct termp *p, const struct roffsu
                 break;                  break;
         }          }
   
         /* Explicitly disallow negative values. */          return(r);
   
         if (r < 0.0)  
                 r = 0.0;  
   
         return((size_t)/* LINTED */  
                         r);  
 }  }
   

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

CVSweb