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

Annotation of mandoc/html4_strict.c, Revision 1.7

1.7     ! kristaps    1: /* $Id: dummy.c,v 1.2 2008/11/24 08:50:33 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: #include <assert.h>
                     20: #include <stdlib.h>
                     21:
                     22: #include "libmdocml.h"
                     23: #include "private.h"
                     24:
1.3       kristaps   25:
1.1       kristaps   26: int
1.7     ! kristaps   27: md_line_html4_strict(void *data, char *buf, size_t sz)
1.1       kristaps   28: {
1.3       kristaps   29:
1.1       kristaps   30:        return(1);
                     31: }
                     32:
                     33:
                     34: int
1.7     ! kristaps   35: md_exit_html4_strict(void *data, int flush)
1.1       kristaps   36: {
                     37:
                     38:        return(1);
                     39: }
                     40:
1.2       kristaps   41:
1.7     ! kristaps   42: void *
        !            43: md_init_html4_strict(const struct md_args *args,
        !            44:                struct md_mbuf *mbuf, const struct md_rbuf *rbuf)
1.2       kristaps   45: {
                     46:
1.7     ! kristaps   47:        return(NULL);
1.2       kristaps   48: }

CVSweb