From: Karel Zak Date: Wed, 10 Mar 2021 10:30:53 +0000 (+0100) Subject: libsmartcols: add comments to private header file X-Git-Tag: v2.37-rc1~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c173ba11ec3b3c537a5e853298dff17e04c3df80;p=thirdparty%2Futil-linux.git libsmartcols: add comments to private header file Signed-off-by: Karel Zak --- diff --git a/libsmartcols/src/smartcolsP.h b/libsmartcols/src/smartcolsP.h index 5e9b9ec561..2a3b22672f 100644 --- a/libsmartcols/src/smartcolsP.h +++ b/libsmartcols/src/smartcolsP.h @@ -124,7 +124,7 @@ struct libscols_column { struct libscols_cell header; - struct list_head cl_columns; + struct list_head cl_columns; /* member of table->tb_columns */ struct libscols_table *table; @@ -212,8 +212,8 @@ struct libscols_table { char *colsep; /* column separator */ char *linesep; /* line separator */ - struct list_head tb_columns; - struct list_head tb_lines; + struct list_head tb_columns; /* list of columns, items: column->cl_columns */ + struct list_head tb_lines; /* list of lines; items: line->ln_lines */ struct list_head tb_groups; /* all defined groups */ struct libscols_group **grpset;