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

Diff for /mandoc/Attic/mdocml.c between version 1.4 and 1.6

version 1.4, 2008/11/22 18:34:06 version 1.6, 2008/11/23 11:05:25
Line 34 
Line 34 
 #define BUFFER_OUT_DEF  BUFSIZ  #define BUFFER_OUT_DEF  BUFSIZ
   
 static void              usage(void);  static void              usage(void);
 static int               begin_io(const char *, const char *);  static int               begin_io(const struct md_args *,
 static int               leave_io(const struct md_mbuf *,                                  char *, char *);
                                 const struct md_rbuf *, int);  static int               leave_io(const struct md_buf *,
 static int               begin_bufs(struct md_mbuf *, struct md_rbuf *);                                  const struct md_buf *, int);
 static int               leave_bufs(const struct md_mbuf *,  static int               begin_bufs(const struct md_args *,
                                 const struct md_rbuf *, int);                                  struct md_buf *, struct md_buf *);
   static int               leave_bufs(const struct md_buf *,
                                   const struct md_buf *, int);
   
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
         int              c;          int              c;
         char            *out, *in;          char            *out, *in;
           struct md_args   args;
   
         extern char     *optarg;          extern char     *optarg;
         extern int       optind;          extern int       optind;
Line 68  main(int argc, char *argv[])
Line 71  main(int argc, char *argv[])
         if (1 == argc)          if (1 == argc)
                 in = *argv++;                  in = *argv++;
   
         return(begin_io(out ? out : "-", in ? in : "-"));          args.type = MD_HTML4_STRICT;
   
           return(begin_io(&args, out ? out : "-", in ? in : "-"));
 }  }
   
   
 static int  static int
 leave_io(const struct md_mbuf *out,  leave_io(const struct md_buf *out,
                 const struct md_rbuf *in, int c)                  const struct md_buf *in, int c)
 {  {
         assert(out);          assert(out);
         assert(in);          assert(in);
Line 96  leave_io(const struct md_mbuf *out, 
Line 101  leave_io(const struct md_mbuf *out, 
   
   
 static int  static int
 begin_io(const char *out, const char *in)  begin_io(const struct md_args *args, char *out, char *in)
 {  {
         struct md_rbuf   fi;          struct md_buf    fi;
         struct md_mbuf   fo;          struct md_buf    fo;
   
 #define FI_FL   O_RDONLY  #define FI_FL   O_RDONLY
 #define FO_FL   O_WRONLY|O_CREAT|O_TRUNC  #define FO_FL   O_WRONLY|O_CREAT|O_TRUNC
   
           assert(args);
         assert(out);          assert(out);
         assert(in);          assert(in);
   
         bzero(&fi, sizeof(struct md_rbuf));          bzero(&fi, sizeof(struct md_buf));
         bzero(&fo, sizeof(struct md_mbuf));          bzero(&fo, sizeof(struct md_buf));
   
         fi.fd = STDIN_FILENO;          fi.fd = STDIN_FILENO;
         fo.fd = STDOUT_FILENO;          fo.fd = STDOUT_FILENO;
Line 128  begin_io(const char *out, const char *in)
Line 134  begin_io(const char *out, const char *in)
                         return(leave_io(&fo, &fi, 1));                          return(leave_io(&fo, &fi, 1));
                 }                  }
   
         return(leave_io(&fo, &fi, begin_bufs(&fo, &fi)));          return(leave_io(&fo, &fi, begin_bufs(args, &fo, &fi)));
 }  }
   
   
 static int  static int
 leave_bufs(const struct md_mbuf *out,  leave_bufs(const struct md_buf *out,
                 const struct md_rbuf *in, int c)                  const struct md_buf *in, int c)
 {  {
         assert(out);          assert(out);
         assert(in);          assert(in);
Line 147  leave_bufs(const struct md_mbuf *out, 
Line 153  leave_bufs(const struct md_mbuf *out, 
   
   
 static int  static int
 begin_bufs(struct md_mbuf *out, struct md_rbuf *in)  begin_bufs(const struct md_args *args,
                   struct md_buf *out, struct md_buf *in)
 {  {
         struct stat      stin, stout;          struct stat      stin, stout;
           int              c;
   
           assert(args);
         assert(in);          assert(in);
         assert(out);          assert(out);
   
Line 173  begin_bufs(struct md_mbuf *out, struct md_rbuf *in)
Line 182  begin_bufs(struct md_mbuf *out, struct md_rbuf *in)
                 return(leave_bufs(out, in, 1));                  return(leave_bufs(out, in, 1));
         }          }
   
         return(leave_bufs(out, in, md_run(MD_DUMMY, out, in)));          c = md_run(args, out, in);
           return(leave_bufs(out, in, -1 == c ? 1 : 0));
 }  }
   
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.6

CVSweb