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

Annotation of mandoc/ml.h, Revision 1.2

1.2     ! kristaps    1: /* $Id: ml.h,v 1.1 2008/12/03 14:39:59 kristaps Exp $ */
1.1       kristaps    2: /*
                      3:  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
                      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 ML_H
                     20: #define ML_H
                     21:
                     22: struct md_mlg;
                     23:
                     24: enum   md_ns {
                     25:        MD_NS_BLOCK,
1.2     ! kristaps   26:        MD_NS_HEAD,
        !            27:        MD_NS_BODY,
1.1       kristaps   28:        MD_NS_INLINE,
                     29:        MD_NS_DEFAULT,
                     30: };
                     31:
1.2     ! kristaps   32: typedef        int     (*ml_begin)(struct md_mbuf *,
        !            33:                const struct md_args *);
        !            34: typedef        int     (*ml_end)(struct md_mbuf *,
        !            35:                const struct md_args *);
1.1       kristaps   36: typedef        ssize_t (*ml_endtag)(struct md_mbuf *,
                     37:                const struct md_args *, enum md_ns, int);
                     38: typedef        ssize_t (*ml_begintag)(struct md_mbuf *,
                     39:                const struct md_args *, enum md_ns, int,
                     40:                const int *, const char **);
                     41:
                     42:
                     43: __BEGIN_DECLS
                     44:
                     45: int              ml_nputstring(struct md_mbuf *,
                     46:                        const char *, size_t, size_t *);
                     47: int              ml_nputs(struct md_mbuf *,
                     48:                        const char *, size_t, size_t *);
1.2     ! kristaps   49: int              ml_puts(struct md_mbuf *, const char *, size_t *);
1.1       kristaps   50: int              ml_putchars(struct md_mbuf *,
                     51:                        char, size_t, size_t *);
                     52:
                     53: struct md_mlg   *mlg_alloc(const struct md_args *,
                     54:                        const struct md_rbuf *, struct md_mbuf *,
1.2     ! kristaps   55:                        ml_begintag, ml_endtag, ml_begin, ml_end);
1.1       kristaps   56: int              mlg_exit(struct md_mlg *, int);
                     57: int              mlg_line(struct md_mlg *, char *);
                     58:
                     59: __END_DECLS
                     60:
                     61: #endif /*!ML_H*/

CVSweb