[A] Add function ft_row_count

This commit is contained in:
seleznevae
2020-01-10 21:22:41 +03:00
parent c81d23e468
commit 628b509991
10 changed files with 67 additions and 8 deletions

View File

@@ -40,6 +40,7 @@ These pages contain the API documentation of **libfort** - simple library to cre
- @link ft_set_memory_funcs ft_set_memory_funcs @endlink -- set memory allocation functions for the library
- @link ft_set_default_printf_field_separator ft_set_default_printf_field_separator @endlink -- Set field separator for ft_printf, ft_printf_ln
- @link ft_is_empty ft_is_empty @endlink -- check if table is empty
- @link ft_row_count ft_row_count @endlink -- get number of rows in the table
- Data structures and types
- @link ft_table_t ft_table_t @endlink -- table handler
@@ -76,6 +77,7 @@ These pages contain the API documentation of **libfort** - simple library to cre
- @link fort::table::row row @endlink -- get row
- @link fort::table::column column @endlink -- get column
- @link fort::table::is_empty is_empty @endlink -- check if table is empty
- @link fort::table::row_count row_count @endlink -- get number of rows in the table
- @link fort::property_owner fort::property_owner @endlink -- base class for all objects (table, row, column, cell) for which user can specify properties
- Modify appearance