* 'getters' of https://github.com/ignatenkobrain/util-linux:
libsmartcols: add scols_table_is_nolinesep()
libsmartcols: add scols_table_is_nowrap()
libsmartcols: add scols_table_get_name()
global:
scols_column_is_wrapnl;
scols_symbols_set_cell_padding;
+ scols_table_get_symbols;
scols_table_get_termforce;
scols_table_get_termwidth;
+ scols_table_set_default_symbols;
scols_table_set_termforce;
scols_table_set_termwidth;
+ scols_table_get_name;
+ scols_table_is_nowrap;
+ scols_table_is_nolinesep;
} SMARTCOLS_2.28;
return 0;
}
+/**
+ * scols_table_get_symbols:
+ * @tb: table
+ *
+ * Returns: pointer to symbols table.
+ */
+struct libscols_symbols *scols_table_get_symbols(const struct libscols_table *tb)
+{
+ return tb->symbols;
+}
+
/**
- * scols_table_enable_nolinesep
+ * scols_table_enable_nolinesep:
* @tb: table
* @enable: 1 or 0
*