btrfs-progs: add getopt stubs where needed
[platform/upstream/btrfs-progs.git] / string-table.h
index 657aae4..c1695d8 100644 (file)
 #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, ...);