[BACK]Return to libman.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Annotation of src/usr.bin/mandoc/libman.h, Revision 1.2

1.2     ! schwarze    1: /*     $Id: libman.h,v 1.9 2009/06/10 20:18:43 kristaps Exp $ */
1.1       kristaps    2: /*
1.2     ! schwarze    3:  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.2     ! schwarze    6:  * purpose with or without fee is hereby granted, provided that the above
        !             7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.2     ! schwarze    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
        !            10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
        !            11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
        !            12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
        !            13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
        !            14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
        !            15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   16:  */
                     17: #ifndef LIBMAN_H
                     18: #define LIBMAN_H
                     19:
                     20: #include "man.h"
                     21:
                     22: enum   man_next {
                     23:        MAN_NEXT_SIBLING = 0,
                     24:        MAN_NEXT_CHILD
                     25: };
                     26:
                     27: struct man {
                     28:        void            *data;
                     29:        struct man_cb    cb;
                     30:        void            *htab;
                     31:        int              pflags;
                     32:        int              flags;
                     33: #define        MAN_HALT        (1 << 0)
                     34: #define        MAN_NLINE       (1 << 1)
                     35:        enum man_next    next;
                     36:        struct man_node *last;
                     37:        struct man_node *first;
                     38:        struct man_meta  meta;
                     39: };
                     40:
                     41: __BEGIN_DECLS
                     42:
                     43: int              man_word_alloc(struct man *, int, int, const char *);
                     44: int              man_elem_alloc(struct man *, int, int, int);
                     45: void             man_node_free(struct man_node *);
                     46: void             man_node_freelist(struct man_node *);
                     47: void            *man_hash_alloc(void);
                     48: int              man_macro(struct man *, int,
                     49:                        int, int, int *, char *);
                     50: int              man_hash_find(const void *, const char *);
                     51: void             man_hash_free(void *);
                     52: int              man_macroend(struct man *);
                     53: int              man_vwarn(struct man *, int, int, const char *, ...);
                     54: int              man_verr(struct man *, int, int, const char *, ...);
                     55: int              man_valid_post(struct man *);
                     56: int              man_action_post(struct man *);
                     57:
                     58: __END_DECLS
                     59:
                     60: #endif /*!LIBMAN_H*/