X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=070c07eb12fbdfd2d114da8edee052bccc909388;hb=9a01f783f7e29b39210373ccfaeac44f364131b4;hp=4ecaa35d4fb4a4a59aea440fc20fd5e93aba6dd1;hpb=b8e1b562ffde66d72294214967741ab88156d7e7;p=pspp diff --git a/src/output/table.h b/src/output/table.h index 4ecaa35d4f..070c07eb12 100644 --- a/src/output/table.h +++ b/src/output/table.h @@ -269,19 +269,4 @@ void table_set_hb (struct table *, int hb); /* Simple kinds of tables. */ struct table *table_from_string (enum table_halign, const char *); -/* Combining tables. */ -struct table *table_paste (struct table *, struct table *, - enum table_axis orientation); -struct table *table_hpaste (struct table *left, struct table *right); -struct table *table_vpaste (struct table *top, struct table *bottom); - -/* Taking subsets of tables. */ -struct table *table_select (struct table *, int rect[TABLE_N_AXES][2]); -struct table *table_select_slice (struct table *, enum table_axis, - int z0, int z1, bool add_headers); -struct table *table_select_columns (struct table *, - int x0, int x1, bool add_headers); -struct table *table_select_rows (struct table *, - int y0, int y1, bool add_headers); - #endif /* output/table.h */