[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.45

1.45    ! schwarze    1: /*     $OpenBSD: libman.h,v 1.44 2015/04/02 22:06:17 schwarze Exp $ */
1.1       kristaps    2: /*
1.29      schwarze    3:  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.43      schwarze    4:  * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
1.2       schwarze    7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    9:  *
1.44      schwarze   10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
1.2       schwarze   11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1.44      schwarze   12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
1.2       schwarze   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.
1.1       kristaps   17:  */
                     18:
                     19: enum   man_next {
                     20:        MAN_NEXT_SIBLING = 0,
                     21:        MAN_NEXT_CHILD
                     22: };
                     23:
                     24: struct man {
1.29      schwarze   25:        struct mparse   *parse; /* parse pointer */
1.42      schwarze   26:        const char      *defos; /* default OS argument for .TH */
1.33      schwarze   27:        int              quick; /* abort parse early */
1.15      schwarze   28:        int              flags; /* parse flags */
1.12      schwarze   29: #define        MAN_ELINE       (1 << 1) /* Next-line element scope. */
                     30: #define        MAN_BLINE       (1 << 2) /* Next-line block scope. */
                     31: #define        MAN_LITERAL     (1 << 4) /* Literal input. */
1.27      schwarze   32: #define        MAN_NEWLINE     (1 << 6) /* first macro/text in a line */
1.23      schwarze   33:        enum man_next    next; /* where to put the next node */
1.44      schwarze   34:        struct roff_node *last; /* the last parsed node */
                     35:        struct roff_node *first; /* the first parsed node */
1.45    ! schwarze   36:        struct roff_meta meta; /* document meta-data */
1.30      schwarze   37:        struct roff     *roff;
1.1       kristaps   38: };
                     39:
1.32      schwarze   40: #define        MACRO_PROT_ARGS   struct man *man, \
1.44      schwarze   41:                          int tok, \
1.23      schwarze   42:                          int line, \
                     43:                          int ppos, \
                     44:                          int *pos, \
                     45:                          char *buf
1.7       schwarze   46:
                     47: struct man_macro {
1.41      schwarze   48:        void            (*fp)(MACRO_PROT_ARGS);
1.7       schwarze   49:        int               flags;
1.43      schwarze   50: #define        MAN_SCOPED       (1 << 0)  /* Optional next-line scope. */
                     51: #define        MAN_NSCOPED      (1 << 1)  /* Allowed in next-line element scope. */
                     52: #define        MAN_BSCOPE       (1 << 2)  /* Break next-line block scope. */
                     53: #define        MAN_JOIN         (1 << 3)  /* Join arguments together. */
1.7       schwarze   54: };
                     55:
                     56: extern const struct man_macro *const man_macros;
                     57:
1.1       kristaps   58: __BEGIN_DECLS
                     59:
1.41      schwarze   60: void             man_word_alloc(struct man *, int, int, const char *);
1.39      schwarze   61: void             man_word_append(struct man *, const char *);
1.44      schwarze   62: void             man_block_alloc(struct man *, int, int, int);
                     63: void             man_head_alloc(struct man *, int, int, int);
                     64: void             man_body_alloc(struct man *, int, int, int);
                     65: void             man_elem_alloc(struct man *, int, int, int);
                     66: void             man_node_delete(struct man *, struct roff_node *);
1.9       schwarze   67: void             man_hash_init(void);
1.44      schwarze   68: int              man_hash_find(const char *);
1.41      schwarze   69: void             man_macroend(struct man *);
                     70: void             man_valid_post(struct man *);
1.44      schwarze   71: void             man_unscope(struct man *, const struct roff_node *);
1.1       kristaps   72:
                     73: __END_DECLS