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

Diff for /mandoc/Attic/xml.c between version 1.19 and 1.21

version 1.19, 2008/12/07 23:44:19 version 1.21, 2008/12/09 17:09:12
Line 20 
Line 20 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "libmdocml.h"  
 #include "private.h"  #include "private.h"
 #include "ml.h"  #include "ml.h"
   
Line 44  static int  xml_begin(struct md_mbuf *,
Line 43  static int  xml_begin(struct md_mbuf *,
                                 const struct md_args *,                                  const struct md_args *,
                                 const struct tm *,                                  const struct tm *,
                                 const char *, const char *,                                  const char *, const char *,
                                 const char *, const char *);                                  enum roffmsec, const char *);
 static  int             xml_end(struct md_mbuf *,  static  int             xml_end(struct md_mbuf *,
                                 const struct md_args *);                                  const struct md_args *);
 static  ssize_t         xml_printtagname(struct md_mbuf *,  static  ssize_t         xml_printtagname(struct md_mbuf *,
Line 123  xml_printtagname(struct md_mbuf *mbuf, enum md_ns ns, 
Line 122  xml_printtagname(struct md_mbuf *mbuf, enum md_ns ns, 
 static int  static int
 xml_begin(struct md_mbuf *mbuf, const struct md_args *args,  xml_begin(struct md_mbuf *mbuf, const struct md_args *args,
                 const struct tm *tm, const char *os,                  const struct tm *tm, const char *os,
                 const char *title, const char *section,                  const char *title, enum roffmsec section,
                 const char *vol)                  const char *vol)
 {  {
   
Line 199  int
Line 198  int
 xml_alloc(void **p)  xml_alloc(void **p)
 {  {
   
           *p = NULL;
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.21

CVSweb