X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=5c47ffe88c0c68e7a49ee0788c91d9b926af2f1a;hb=166eb5966a9a6908cfa60830a79d85b074eec53d;hp=07c88874c86a47eb925089c6b9606f3859f161f4;hpb=61b107f4f5e3ee7a468c91bc7fa269e268c5bc84;p=pspp diff --git a/src/output/table.h b/src/output/table.h index 07c88874c8..5c47ffe88c 100644 --- a/src/output/table.h +++ b/src/output/table.h @@ -19,7 +19,7 @@ /* Tables. -. A table is a rectangular grid of cells. Cells can be joined to form larger + A table is a rectangular grid of cells. Cells can be joined to form larger cells. Rows and columns can be separated by rules of various types. Rows at the top and bottom of a table and columns at the left and right edges of a table can be designated as headers, which means that if the table must be @@ -156,6 +156,7 @@ void font_style_copy (struct pool *, struct font_style *, const struct font_style *); void font_style_uninit (struct font_style *); void font_style_dump (const struct font_style *); +bool font_style_equal (const struct font_style *, const struct font_style *); struct table_area_style { @@ -276,11 +277,9 @@ struct footnote *table_create_footnote (struct table *, size_t idx, const char *content, const char *marker, struct table_area_style *); -void table_add_footnote (struct table *, int x, int y, - const struct footnote *); +void table_add_footnote (struct table *, int x, int y, struct footnote *); -void table_add_style (struct table *, int x, int y, - const struct table_area_style *); +void table_add_style (struct table *, int x, int y, struct table_area_style *); bool table_cell_is_empty (const struct table *, int c, int r);