[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.2

version 1.1, 2009/02/22 22:58:39 version 1.2, 2009/02/23 07:09:13
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"
Line 34  struct mmain;
Line 34  struct mmain;
   
 struct  mmain           *mmain_alloc(void);  struct  mmain           *mmain_alloc(void);
 __dead void              mmain_exit(struct mmain *, int);  __dead void              mmain_exit(struct mmain *, int);
 int                      mmain_getopt(struct mmain *, int,  int                      mmain_getopt(struct mmain *, int, char *[],
                                 char *[], const char *);                                  const char *, const char *, void *,
 int                      mmain_isopt(int);                                  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.2

CVSweb