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

Diff for /mandoc/Attic/regs.h between version 1.3 and 1.6

version 1.3, 2010/06/27 16:36:22 version 1.6, 2010/07/05 20:10:22
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2010 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 19 
Line 20 
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 enum    regs {  char             *roff_setstr(const char *, const char *);
         REG_nS = 0,     /* nS */  char             *roff_getstr(const char *);
         REG__MAX  char             *roff_getstrn(const char *, size_t);
 };  void              roff_freestr(void);
   
 struct  reg {  
         int              set; /* whether set or not */  
         union {  
                 unsigned u; /* unsigned integer */  
         } v;  
 };  
   
 /*  
  * Registers are non-scoped state.  These can be manipulated directly in  
  * libroff or indirectly in libman or libmdoc by macros.  These should  
  * be implemented sparingly (we are NOT roffdoc!) and documented fully  
  * in roff.7.  
  */  
 struct  regset {  
         struct reg       regs[REG__MAX];  
 };  
   
 __END_DECLS  __END_DECLS
   

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

CVSweb