[C] Documentation changes

This commit is contained in:
seleznevae
2018-05-05 22:34:45 +03:00
parent d010dc9cf8
commit d6ec32cb5f
14 changed files with 354 additions and 182 deletions

View File

@@ -3,9 +3,9 @@
#include <wchar.h>
#include <locale.h>
static FTABLE *create_basic_table(void)
static ft_table_t *create_basic_table(void)
{
FTABLE *table = ft_create_table();
ft_table_t *table = ft_create_table();
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_COPT_TEXT_ALIGN, FT_ALIGNED_CENTER);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_COPT_TEXT_ALIGN, FT_ALIGNED_LEFT);
@@ -25,7 +25,7 @@ int main(void)
{
int result = 0;
FTABLE *table = NULL;
ft_table_t *table = NULL;
table = ft_create_table();
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_COPT_TEXT_ALIGN, FT_ALIGNED_CENTER);