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

Diff for /mandoc/libman.h between version 1.3 and 1.85

version 1.3, 2009/03/23 15:41:09 version 1.85, 2018/12/31 04:55:46
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2014, 2015, 2018 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * 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   * purpose with or without fee is hereby granted, provided that the above
  * above copyright notice and this permission notice appear in all   * copyright notice and this permission notice appear in all copies.
  * copies.  
  *   *
  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED   * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE   * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL   * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR   * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  * PERFORMANCE OF THIS SOFTWARE.  
  */   */
 #ifndef LIBMAN_H  
 #define LIBMAN_H  
   
 #include "man.h"  struct  roff_node;
   struct  roff_man;
   
 enum    man_next {  #define MACRO_PROT_ARGS   struct roff_man *man, \
         MAN_NEXT_SIBLING = 0,                            enum roff_tok tok, \
         MAN_NEXT_CHILD                            int line, \
 };                            int ppos, \
                             int *pos, \
                             char *buf
   
 struct  man {  struct  man_macro {
         void            *htab;          void            (*fp)(MACRO_PROT_ARGS);
         int              flags;          int               flags;
 #define MAN_HALT        (1 << 0)  #define MAN_BSCOPED      (1 << 0)  /* Optional next-line block scope. */
         enum man_next    next;  #define MAN_ESCOPED      (1 << 1)  /* Optional next-line element scope. */
         struct man_node *last;  #define MAN_NSCOPED      (1 << 2)  /* Allowed in next-line element scope. */
         struct man_node *first;  #define MAN_XSCOPE       (1 << 3)  /* Exit next-line block scope. */
         struct man_meta  meta;  #define MAN_JOIN         (1 << 4)  /* Join arguments together. */
 };  };
   
 __BEGIN_DECLS  const struct man_macro *man_macro(enum roff_tok);
   
 int               man_word_alloc(struct man *, int, int, const char *);  void              man_descope(struct roff_man *, int, int, char *);
 int               man_elem_alloc(struct man *, int, int, int);  void              man_state(struct roff_man *, struct roff_node *);
 void              man_node_free(struct man_node *);  void              man_unscope(struct roff_man *, const struct roff_node *);
 void              man_node_freelist(struct man_node *);  
 void             *man_hash_alloc(void);  
 int               man_macro(struct man *, int,  
                         int, int, int *, char *);  
 int               man_hash_find(const void *, const char *);  
 void              man_hash_free(void *);  
 int               man_macroend(struct man *);  
   
 __END_DECLS  
   
 #endif /*!LIBMAN_H*/  

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.85

CVSweb