]>
git.cameronkatri.com Git - mandoc.git/blob - tbl.c
1 /* $Id: tbl.c,v 1.7 2010/12/29 14:53:31 kristaps Exp $ */
3 * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
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.
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.
25 #include "libmandoc.h"
28 static void tbl_init(struct tbl
*);
29 static void tbl_clear(struct tbl
*);
32 tbl_clear(struct tbl
*tbl
)
39 tbl
->first
= rp
->next
;
52 tbl_init(struct tbl
*tbl
)
55 tbl
->part
= TBL_PART_OPTS
;
62 tbl_read(struct tbl
*tbl
, int ln
, const char *p
, int offs
)
68 len
= (int)strlen(cp
);
71 * If we're in the options section and we don't have a
72 * terminating semicolon, assume we've moved directly into the
73 * layout section. No need to report a warning: this is,
74 * apparently, standard behaviour.
77 if (TBL_PART_OPTS
== tbl
->part
&& len
)
78 if (';' != cp
[len
- 1])
79 tbl
->part
= TBL_PART_LAYOUT
;
81 /* Now process each logical section of the table. */
85 return(tbl_option(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
86 case (TBL_PART_LAYOUT
):
87 return(tbl_layout(tbl
, ln
, p
) ? ROFF_IGN
: ROFF_ERR
);
96 tbl_alloc(void *data
, const mandocmsg msg
)
100 p
= mandoc_calloc(1, sizeof(struct tbl
));
108 tbl_free(struct tbl
*p
)
116 tbl_reset(struct tbl
*tbl
)
124 tbl_restart(struct tbl
*tbl
)
128 tbl
->part
= TBL_PART_LAYOUT
;