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

Diff for /mandoc/Attic/mmain.h between version 1.1 and 1.3

version 1.1, 2009/02/22 22:58:39 version 1.3, 2009/02/23 12:45:19
Line 22 
Line 22 
 /*  /*
  * This is a convenience library for utilities implementing mdoc(3)   * This is a convenience library for utilities implementing mdoc(3)
  * accepting a similar set of command-line patterns.  mmain handles   * accepting a similar set of command-line patterns.  mmain handles
  * error reporting (to the terminal), preparing and reading the input   * error reporting (to the terminal), command-line parsing, preparing
  * file, and enacting the parse itself.   * and reading the input file, and enacting the parse itself.
  */   */
   
 #include "mdoc.h"  #include "mdoc.h"
   
   #ifdef __linux__
   #define __dead /* Nothing */
   #endif
   
 __BEGIN_DECLS  __BEGIN_DECLS
   
 struct  mmain;  struct  mmain;
   
 struct  mmain           *mmain_alloc(void);  struct  mmain           *mmain_alloc(void);
   #ifdef __linux__
   void                     mmain_exit(struct mmain *, int)
                                   __attribute__((__noreturn__));
   #else
 __dead void              mmain_exit(struct mmain *, int);  __dead void              mmain_exit(struct mmain *, int);
 int                      mmain_getopt(struct mmain *, int,  #endif
                                 char *[], const char *);  int                      mmain_getopt(struct mmain *, int, char *[],
 int                      mmain_isopt(int);                                  const char *, const char *, void *,
                                   int (*)(void *, int, const char *));
 struct mdoc             *mmain_mdoc(struct mmain *);  struct mdoc             *mmain_mdoc(struct mmain *);
 void                     mmain_usage(const char *);  void                     mmain_usage(const char *);
   

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

CVSweb