diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/table.cc | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/table.cc')
-rw-r--r-- | src/table.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/table.cc b/src/table.cc index 1268fbd9..3a1aded4 100644 --- a/src/table.cc +++ b/src/table.cc @@ -10,6 +10,11 @@ * (at your option) any later version. */ +/** + * @file + * Table parsing functions + */ + #include "table.hh" #include "html_common.hh" @@ -288,7 +293,7 @@ void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize) * Utilities */ -/* +/** * The table border model is stored in the table's stack item */ static int Html_table_get_border_model(DilloHtml *html) @@ -303,7 +308,7 @@ static int Html_table_get_border_model(DilloHtml *html) return html->stack->getRef(s_idx)->table_border_mode; } -/* +/** * Set current table's border model */ static void Html_table_set_border_model(DilloHtml *html, @@ -362,7 +367,7 @@ static void Html_set_collapsing_border_model(DilloHtml *html, Widget *col_tb) } } -/* +/** * Adjust style for separate border model. * (Dw uses this model internally). */ |