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

Diff for /mandoc/libmdoc.h between version 1.3 and 1.7

version 1.3, 2009/03/31 13:50:19 version 1.7, 2009/06/10 20:18:43
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *   *
  * 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 AUTHOR DISCLAIMS 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 AUTHOR 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 LIBMDOC_H  #ifndef LIBMDOC_H
 #define LIBMDOC_H  #define LIBMDOC_H
Line 111  int    mdoc_tail_alloc(struct mdoc *, int, int, int);
Line 109  int    mdoc_tail_alloc(struct mdoc *, int, int, int);
 int               mdoc_body_alloc(struct mdoc *, int, int, int);  int               mdoc_body_alloc(struct mdoc *, int, int, int);
 void              mdoc_node_free(struct mdoc_node *);  void              mdoc_node_free(struct mdoc_node *);
 void              mdoc_node_freelist(struct mdoc_node *);  void              mdoc_node_freelist(struct mdoc_node *);
 void             *mdoc_tokhash_alloc(void);  void             *mdoc_hash_alloc(void);
 int               mdoc_tokhash_find(const void *, const char *);  int               mdoc_hash_find(const void *, const char *);
 void              mdoc_tokhash_free(void *);  void              mdoc_hash_free(void *);
 int               mdoc_iscdelim(char);  int               mdoc_iscdelim(char);
 int               mdoc_isdelim(const char *);  int               mdoc_isdelim(const char *);
 size_t            mdoc_isescape(const char *);  size_t            mdoc_isescape(const char *);
Line 146  int    mdoc_args(struct mdoc *, int,
Line 144  int    mdoc_args(struct mdoc *, int,
 #define ARGS_QWORD      (3)  #define ARGS_QWORD      (3)
 #define ARGS_PHRASE     (4)  #define ARGS_PHRASE     (4)
   
 /* FIXME: get rid of these. */  
 int               xstrlcpys(char *, const struct mdoc_node *, size_t);  
 void             *xrealloc(void *, size_t);  
 char             *xstrdup(const char *);  
 int               mdoc_macroend(struct mdoc *);  int               mdoc_macroend(struct mdoc *);
   
 __END_DECLS  __END_DECLS

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

CVSweb