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

Annotation of mandoc/libman.h, Revision 1.1

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

CVSweb