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

Diff for /pod2mdoc/pod2mdoc.c between version 1.54 and 1.55

version 1.54, 2015/02/19 15:26:45 version 1.55, 2015/02/19 16:34:32
Line 107  enum cmd {
Line 107  enum cmd {
         CMD__MAX          CMD__MAX
 };  };
   
   static void      command(struct state *, const char *, size_t, size_t);
   static void      dofile(const struct args *, const char *,
                           const struct tm *, char *, size_t);
   static void      donamenm(struct state *, const char *, size_t *, size_t);
   static void      dopar(struct state *, char *, size_t, size_t);
   static void      dosynopsisfl(const char *, size_t *, size_t);
   static int       dosynopsisop(struct state *, const char *, size_t *,
                           size_t, size_t *);
   static int       formatcode(struct state *, const char *, size_t *,
                           size_t, int, int);
   static void      formatcodeln(struct state *, const char *, const char *,
                           size_t *, size_t, int);
   static void      formatescape(struct state *, const char *, size_t *, size_t);
   static int       hasmatch(const char *, size_t, size_t);
   static void      ordinary(struct state *, const char *, size_t, size_t);
   static void      outbuf_addchar(struct state *);
   static void      outbuf_addstr(struct state *, const char *);
   static void      outbuf_flush(struct state *);
   static void      outbuf_grow(struct state *, size_t);
   static enum list listguess(const char *, size_t, size_t);
   static void      mdoc_newln(struct state *);
   static int       readfile(const struct args *, const char *);
   static void      register_type(const char *);
   static int       trylink(const char *, size_t *, size_t, size_t);
   static void      verbatim(struct state *, char *, size_t, size_t);
   
 static  const char *const cmds[CMD__MAX] = {  static  const char *const cmds[CMD__MAX] = {
         "pod",          /* CMD_POD */          "pod",          /* CMD_POD */
         "head1",        /* CMD_HEAD1 */          "head1",        /* CMD_HEAD1 */

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55

CVSweb