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

Diff for /mandoc/main.c between version 1.45 and 1.46

version 1.45, 2009/10/13 10:21:24 version 1.46, 2009/10/13 10:57:25
Line 27 
Line 27 
   
 #include "mdoc.h"  #include "mdoc.h"
 #include "man.h"  #include "man.h"
   #include "main.h"
   
 #define UNCONST(a)      ((void *)(uintptr_t)(const void *)(a))  #define UNCONST(a)      ((void *)(uintptr_t)(const void *)(a))
   
Line 89  struct curparse {
Line 90  struct curparse {
         void             *outdata;          void             *outdata;
         char             *outopts;          char             *outopts;
 };  };
   
 extern  void             *html_alloc(char *);  
 extern  void              html_mdoc(void *, const struct mdoc *);  
 extern  void              html_man(void *, const struct man *);  
 extern  void              html_free(void *);  
 extern  void             *ascii_alloc(void);  
 extern  void              tree_mdoc(void *, const struct mdoc *);  
 extern  void              tree_man(void *, const struct man *);  
 extern  void              terminal_mdoc(void *, const struct mdoc *);  
 extern  void              terminal_man(void *, const struct man *);  
 extern  void              terminal_free(void *);  
   
 static  int               foptions(int *, char *);  static  int               foptions(int *, char *);
 static  int               toptions(enum outt *, char *);  static  int               toptions(enum outt *, char *);

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46

CVSweb