summaryrefslogtreecommitdiff
path: root/string-table.h
diff options
context:
space:
mode:
Diffstat (limited to 'string-table.h')
-rw-r--r--string-table.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/string-table.h b/string-table.h
index 657aae4b..c1695d8d 100644
--- a/string-table.h
+++ b/string-table.h
@@ -18,13 +18,11 @@
#define __STRING_TABLE_H__
struct string_table {
-
- int ncols, nrows;
- char *cells[];
-
+ int ncols;
+ int nrows;
+ char *cells[];
};
-
struct string_table *table_create(int columns, int rows);
char *table_printf(struct string_table *tab, int column, int row,
char *fmt, ...);