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

Diff for /mandoc/out.h between version 1.3 and 1.14

version 1.3, 2009/10/07 12:35:24 version 1.14, 2010/07/21 20:35:03
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2009 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 17 
Line 17 
 #ifndef OUT_H  #ifndef OUT_H
 #define OUT_H  #define OUT_H
   
   #define DATESIZ         24
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 enum    roffscale {  enum    roffscale {
Line 33  enum roffscale {
Line 35  enum roffscale {
         SCALE_MAX          SCALE_MAX
 };  };
   
   enum    roffdeco {
           DECO_NONE,
           DECO_SPECIAL, /* special character */
           DECO_SSPECIAL, /* single-char special */
           DECO_RESERVED, /* reserved word */
           DECO_BOLD,
           DECO_ITALIC,
           DECO_ROMAN,
           DECO_PREVIOUS,
           DECO_NOSPACE,
           DECO_FONT, /* font */
           DECO_FFONT, /* font family */
           DECO_MAX
   };
   
 struct  roffsu {  struct  roffsu {
         enum roffscale    unit;          enum roffscale    unit;
         int               scale;          double            scale;
 };  };
   
 #define SCALE_INVERT(p) \  #define SCALE_INVERT(p) \
         do { (p)->scale = -(p)->scale; } while (/*CONSTCOND*/0)          do { (p)->scale = -(p)->scale; } \
           while (/* CONSTCOND */ 0)
   
 #define SCALE_VS_INIT(p, v) \  #define SCALE_VS_INIT(p, v) \
         do { (p)->unit = SCALE_VS; \          do { (p)->unit = SCALE_VS; \
              (p)->scale = (v); } while (/*CONSTCOND*/0)               (p)->scale = (v); } \
           while (/* CONSTCOND */ 0)
   
 #define SCALE_HS_INIT(p, v) \  #define SCALE_HS_INIT(p, v) \
         do { (p)->unit = SCALE_BU; \          do { (p)->unit = SCALE_BU; \
              (p)->scale = (v); } while (/*CONSTCOND*/0)               (p)->scale = (v); } \
           while (/* CONSTCOND */ 0)
   
 int               a2roffsu(const char *, struct roffsu *);  int               a2roffsu(const char *,
                           struct roffsu *, enum roffscale);
   int               a2roffdeco(enum roffdeco *, const char **, size_t *);
   void              time2a(time_t, char *, size_t);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.14

CVSweb