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

Annotation of mandoc/libmandoc.h, Revision 1.13

1.13    ! kristaps    1: /*     $Id: libmandoc.h,v 1.12 2011/03/17 08:49:34 kristaps Exp $ */
1.1       kristaps    2: /*
1.9       schwarze    3:  * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
1.1       kristaps    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 LIBMANDOC_H
                     18: #define LIBMANDOC_H
                     19:
                     20: __BEGIN_DECLS
                     21:
1.13    ! kristaps   22: void    mandoc_msg(enum mandocerr, struct mparse *,
        !            23:                int, int, const char *);
        !            24: void    mandoc_vmsg(enum mandocerr, struct mparse *,
        !            25:                int, int, const char *, ...);
        !            26: int     mandoc_special(char *);
        !            27: char   *mandoc_strdup(const char *);
        !            28: char   *mandoc_getarg(struct mparse *, char **, int, int *);
        !            29: char   *mandoc_normdate(struct mparse *, char *, int, int);
        !            30: int     mandoc_eos(const char *, size_t, int);
        !            31: int     mandoc_hyph(const char *, const char *);
1.1       kristaps   32:
                     33: __END_DECLS
                     34:
                     35: #endif /*!LIBMANDOC_H*/

CVSweb