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

Annotation of mandoc/libroff.h, Revision 1.3

1.3     ! kristaps    1: /*     $Id: libroff.h,v 1.2 2010/12/28 13:46:07 kristaps Exp $ */
1.1       kristaps    2: /*
                      3:  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
                      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 above
                      7:  * copyright notice and this permission notice appear in all copies.
                      8:  *
                      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.
                     16:  */
                     17: #ifndef LIBROFF_H
                     18: #define LIBROFF_H
                     19:
                     20: __BEGIN_DECLS
                     21:
1.2       kristaps   22: enum   tbl_part {
                     23:        TBL_PART_OPTS, /* in options (first line) */
                     24:        TBL_PART_LAYOUT, /* describing layout */
                     25:        TBL_PART_DATA  /* creating data rows */
                     26: };
                     27:
                     28: struct tbl {
1.3     ! kristaps   29:        mandocmsg        msg; /* status messages */
        !            30:        void            *data; /* privdata for messages */
1.2       kristaps   31:        enum tbl_part     part;
                     32:        char              tab; /* cell-separator */
                     33:        char              decimal; /* decimal point */
                     34:        int               linesize;
                     35:        char              delims[2];
                     36:        int               opts;
                     37: #define        TBL_OPT_CENTRE   (1 << 0)
                     38: #define        TBL_OPT_EXPAND   (1 << 1)
                     39: #define        TBL_OPT_BOX      (1 << 2)
                     40: #define        TBL_OPT_DBOX     (1 << 3)
                     41: #define        TBL_OPT_ALLBOX   (1 << 4)
                     42: #define        TBL_OPT_NOKEEP   (1 << 5)
                     43: #define        TBL_OPT_NOSPACE  (1 << 6)
                     44: };
1.1       kristaps   45:
1.3     ! kristaps   46: #define        TBL_MSG(tblp, type, line, col) \
        !            47:        (*(tblp)->msg)((type), (tblp)->data, (line), (col), NULL)
        !            48:
        !            49: struct tbl     *tbl_alloc(void *, mandocmsg);
1.1       kristaps   50: void            tbl_free(struct tbl *);
                     51: void            tbl_reset(struct tbl *);
                     52: enum rofferr    tbl_read(struct tbl *, int, const char *, int);
1.2       kristaps   53: enum tbl_tok    tbl_next(struct tbl *, const char *, int *);
1.3     ! kristaps   54: int             tbl_option(struct tbl *, int, const char *);
1.1       kristaps   55:
                     56: __END_DECLS
                     57:
                     58: #endif /*LIBROFF_H*/

CVSweb