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

Annotation of mandoc/roff_int.h, Revision 1.1

1.1     ! schwarze    1: /*     $OpenBSD$       */
        !             2: /*
        !             3:  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
        !             4:  * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
        !             5:  *
        !             6:  * Permission to use, copy, modify, and distribute this software for any
        !             7:  * purpose with or without fee is hereby granted, provided that the above
        !             8:  * copyright notice and this permission notice appear in all copies.
        !             9:  *
        !            10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
        !            11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
        !            12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
        !            13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
        !            14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
        !            15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
        !            16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
        !            17:  */
        !            18:
        !            19: __BEGIN_DECLS
        !            20:
        !            21: struct roff_node *roff_node_alloc(struct roff_man *, int, int,
        !            22:                        enum roff_type, int);
        !            23: void             roff_node_append(struct roff_man *, struct roff_node *);
        !            24: struct roff_node *roff_head_alloc(struct roff_man *, int, int, int);
        !            25: struct roff_node *roff_body_alloc(struct roff_man *, int, int, int);
        !            26: void             roff_node_unlink(struct roff_man *, struct roff_node *);
        !            27: void             roff_node_free(struct roff_node *);
        !            28: void             roff_node_delete(struct roff_man *, struct roff_node *);
        !            29:
        !            30: __END_DECLS

CVSweb