summaryrefslogtreecommitdiff
path: root/render/table.h
blob: f206e251fca539bd18b8c3165f313e556296ea06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * This file is part of NetSurf, http://netsurf-browser.org/
 * Licensed under the GNU General Public License,
 *                http://www.opensource.org/licenses/gpl-license
 * Copyright 2005 James Bursa <bursa@users.sourceforge.net>
 * Copyright 2005 Richard Wilson <info@tinct.net>
 */

/** \file
 * Table processing and layout (interface).
 */

#ifndef _NETSURF_RENDER_TABLE_H_
#define _NETSURF_RENDER_TABLE_H_

#include <stdbool.h>

struct box;

bool table_calculate_column_types(struct box *table);
void table_collapse_borders(struct box *table);

#endif