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

Diff for /mandoc/libmdoc.h between version 1.50 and 1.57

version 1.50, 2010/05/24 12:05:04 version 1.57, 2010/06/27 16:18:13
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * 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 17 
Line 17 
 #ifndef LIBMDOC_H  #ifndef LIBMDOC_H
 #define LIBMDOC_H  #define LIBMDOC_H
   
   #include "regs.h"
 #include "mdoc.h"  #include "mdoc.h"
   
 enum    mdoc_next {  enum    mdoc_next {
Line 25  enum mdoc_next {
Line 26  enum mdoc_next {
 };  };
   
 struct  mdoc {  struct  mdoc {
         void             *data;          void             *data; /* private application data */
         mandocmsg         msg;          mandocmsg         msg; /* message callback */
         int               flags;          int               flags;
 #define MDOC_HALT        (1 << 0) /* error in parse: halt */  #define MDOC_HALT        (1 << 0) /* error in parse: halt */
 #define MDOC_LITERAL     (1 << 1) /* in a literal scope */  #define MDOC_LITERAL     (1 << 1) /* in a literal scope */
Line 34  struct mdoc {
Line 35  struct mdoc {
 #define MDOC_NEWLINE     (1 << 3) /* first macro/text in a line */  #define MDOC_NEWLINE     (1 << 3) /* first macro/text in a line */
 #define MDOC_PHRASELIT   (1 << 4) /* literal within a partila phrase */  #define MDOC_PHRASELIT   (1 << 4) /* literal within a partila phrase */
 #define MDOC_PPHRASE     (1 << 5) /* within a partial phrase */  #define MDOC_PPHRASE     (1 << 5) /* within a partial phrase */
   #define MDOC_FREECOL     (1 << 6) /* `It' invocation should close */
         int               pflags;          int               pflags;
         enum mdoc_next    next;          enum mdoc_next    next; /* where to put the next node */
         struct mdoc_node *last;          struct mdoc_node *last; /* the last node parsed */
         struct mdoc_node *first;          struct mdoc_node *first; /* the first node parsed */
         struct mdoc_meta  meta;          struct mdoc_meta  meta; /* document meta-data */
         enum mdoc_sec     lastnamed;          enum mdoc_sec     lastnamed;
         enum mdoc_sec     lastsec;          enum mdoc_sec     lastsec;
           struct regset    *regs; /* registers */
 };  };
   
 #define MACRO_PROT_ARGS struct mdoc *m, enum mdoct tok, \  #define MACRO_PROT_ARGS struct mdoc *m, \
                         int line, int ppos, int *pos, char *buf                          enum mdoct tok, \
                           int line, \
                           int ppos, \
                           int *pos, \
                           char *buf
   
 struct  mdoc_macro {  struct  mdoc_macro {
         int             (*fp)(MACRO_PROT_ARGS);          int             (*fp)(MACRO_PROT_ARGS);
Line 117  const char  *mdoc_a2st(const char *);
Line 124  const char  *mdoc_a2st(const char *);
 const char       *mdoc_a2arch(const char *);  const char       *mdoc_a2arch(const char *);
 const char       *mdoc_a2vol(const char *);  const char       *mdoc_a2vol(const char *);
 const char       *mdoc_a2msec(const char *);  const char       *mdoc_a2msec(const char *);
 int               mdoc_valid_pre(struct mdoc *,  int               mdoc_valid_pre(struct mdoc *, struct mdoc_node *);
                         const struct mdoc_node *);  
 int               mdoc_valid_post(struct mdoc *);  int               mdoc_valid_post(struct mdoc *);
 int               mdoc_action_pre(struct mdoc *,  int               mdoc_action_pre(struct mdoc *,
                         struct mdoc_node *);                          struct mdoc_node *);

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.57

CVSweb