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

Diff for /mandoc/libmdoc.h between version 1.51 and 1.55

version 1.51, 2010/05/31 15:42:09 version 1.55, 2010/06/26 16:07:08
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 44  struct mdoc {
Line 45  struct mdoc {
         enum mdoc_sec     lastsec;          enum mdoc_sec     lastsec;
 };  };
   
 #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                          const struct regset *regs, \
                           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 118  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.51  
changed lines
  Added in v.1.55

CVSweb