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

Diff for /mandoc/mdoc.h between version 1.40 and 1.51

version 1.40, 2009/03/08 18:02:36 version 1.51, 2009/03/21 09:42:07
Line 19 
Line 19 
 #ifndef MDOC_H  #ifndef MDOC_H
 #define MDOC_H  #define MDOC_H
   
   #include <time.h>
   
 /*  /*
  * This library implements a validating scanner/parser for ``mdoc'' roff   * This library implements a validating scanner/parser for ``mdoc'' roff
  * macro documents, a.k.a. BSD manual page documents.  The mdoc.c file   * macro documents, a.k.a. BSD manual page documents.  The mdoc.c file
Line 29 
Line 31 
   
 /* What follows is a list of ALL possible macros. */  /* What follows is a list of ALL possible macros. */
   
 /* TODO: Brq et al. */  
   
 #define MDOC___          0  #define MDOC___          0
 #define MDOC_Dd          1  #define MDOC_Dd          1
 #define MDOC_Dt          2  #define MDOC_Dt          2
Line 138 
Line 138 
 #define MDOC_Fr          104  #define MDOC_Fr          104
 #define MDOC_Ud          105  #define MDOC_Ud          105
 #define MDOC_Lb          106  #define MDOC_Lb          106
 #define MDOC_MAX         107  #define MDOC_Ap          107
   #define MDOC_Lp          108
   #define MDOC_Lk          109
   #define MDOC_Mt          110
   #define MDOC_Brq         111
   #define MDOC_Bro         112
   #define MDOC_Brc         113
   #define MDOC__C          114
   #define MDOC_Es          115
   #define MDOC_En          116
   #define MDOC_Dx          117
   #define MDOC__Q          118
   #define MDOC_MAX         119
   
 /* What follows is a list of ALL possible macro arguments. */  /* What follows is a list of ALL possible macro arguments. */
   
Line 167 
Line 179 
 #define MDOC_Words       22  #define MDOC_Words       22
 #define MDOC_Emphasis    23  #define MDOC_Emphasis    23
 #define MDOC_Symbolic    24  #define MDOC_Symbolic    24
 #define MDOC_ARG_MAX     25  #define MDOC_Nested      25
   #define MDOC_ARG_MAX     26
   
 /* Warnings are either syntax or groff-compatibility. */  /* Warnings are either syntax or groff-compatibility. */
 enum    mdoc_warn {  enum    mdoc_warn {
Line 262  struct mdoc_node {
Line 275  struct mdoc_node {
   
 #define MDOC_IGN_SCOPE   (1 << 0) /* Ignore scope violations. */  #define MDOC_IGN_SCOPE   (1 << 0) /* Ignore scope violations. */
 #define MDOC_IGN_ESCAPE  (1 << 1) /* Ignore bad escape sequences. */  #define MDOC_IGN_ESCAPE  (1 << 1) /* Ignore bad escape sequences. */
   #define MDOC_IGN_MACRO   (1 << 2) /* Ignore unknown macros. */
   
 /* Call-backs for parse messages. */  /* Call-backs for parse messages. */
 struct  mdoc_cb {  struct  mdoc_cb {
Line 287  void     mdoc_free(struct mdoc *);
Line 301  void     mdoc_free(struct mdoc *);
 /* Allocate a new parser instance. */  /* Allocate a new parser instance. */
 struct  mdoc     *mdoc_alloc(void *, int, const struct mdoc_cb *);  struct  mdoc     *mdoc_alloc(void *, int, const struct mdoc_cb *);
   
 /* Set parse options. */  /* Gets system ready for another parse. */
 void              mdoc_setflags(struct mdoc *, int);  void              mdoc_reset(struct mdoc *);
   
 /* Parse a single line in a stream (boolean retval). */  /* Parse a single line in a stream (boolean retval). */
 int               mdoc_parseln(struct mdoc *, int, char *buf);  int               mdoc_parseln(struct mdoc *, int, char *buf);

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.51

CVSweb