1
0
Fork 0
libfort/example/main.c

88 lines
2.9 KiB
C
Raw Normal View History

2018-01-01 09:26:34 +01:00
#include <stdio.h>
#include "fort.h"
int main()
{
FTABLE *table = ft_create_table();
2018-02-27 18:41:57 +01:00
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_OPT_TEXT_ALIGN, CenterAligned);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, LeftAligned);
2018-01-22 19:31:03 +01:00
ft_hdr_printf_ln(table, "#|Planet|Avg. speed");
ft_printf_ln(table, "%d|%s|%5.2f km/s", 1, "Mercury", 47.362);
ft_printf_ln(table, "%d|%s|%5.2f km/s", 2, "Venus", 35.02);
ft_printf_ln(table, "%d|%s|%5.2f km/s", 3, "Earth", 29.78);
2018-01-01 09:26:34 +01:00
2018-01-21 18:02:43 +01:00
printf("Table:\n");
printf("%s\n", ft_to_string(table));
ft_destroy_table(table);
/*-------------------------------------------------------------*/
2018-01-21 09:19:18 +01:00
2018-01-21 18:02:43 +01:00
table = ft_create_table();
2018-02-27 18:41:57 +01:00
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_OPT_TEXT_ALIGN, CenterAligned);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, LeftAligned);
2018-02-27 18:41:57 +01:00
ft_hdr_printf_ln(table, "Rank|Title|Year|Rating");
2018-01-21 18:02:43 +01:00
FT_NWRITE_LN(table, "1", "The Shawshank Redemption", "1994", "9.5");
FT_NWRITE_LN(table, "2", "12 Angry Men", "1957", "8.8");
FT_NWRITE_LN(table, "3", "2001: A Space Odyssey", "1968", "8.5");
FT_NWRITE_LN(table, "4", "Blade Runner", "1982", "8.1");
2018-01-21 18:02:43 +01:00
printf("Table:\n");
printf("%s\n", ft_to_string(table));
ft_destroy_table(table);
2018-01-21 18:02:43 +01:00
/*-------------------------------------------------------------*/
2018-01-21 18:02:43 +01:00
table = ft_create_table();
2018-02-27 18:41:57 +01:00
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_OPT_TEXT_ALIGN, LeftAligned);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, CenterAligned);
2018-01-21 18:02:43 +01:00
2018-02-27 18:41:57 +01:00
ft_hdr_printf_ln(table, "Commodity|Farm price|Avg. spread");
2018-01-21 18:02:43 +01:00
const char *row1[] = {"Potatoes", "$1.60", "200.94%"};
const char *row2[] = {"Carrots", "$0.32 ", "190.63%"};
ft_row_write_ln(table, 3, row1);
ft_row_write_ln(table, 3, row2);
printf("Table:\n");
printf("%s\n", ft_to_string(table));
ft_destroy_table(table);
/*-------------------------------------------------------------*/
table = ft_create_table();
2018-02-27 18:41:57 +01:00
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_OPT_TEXT_ALIGN, LeftAligned);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, CenterAligned);
2018-01-21 18:02:43 +01:00
2018-02-27 18:41:57 +01:00
ft_hdr_printf_ln(table, "No.|Name|Avg. Mark");
2018-01-21 18:02:43 +01:00
const char *ctab[2][3] = {
{"1", "Joe Public", "3.14"},
{"2", "John Doe", "4.50"}
};
ft_s_table_write_ln(table, 2, 3, ctab);
printf("Table:\n");
printf("%s\n", ft_to_string(table));
ft_destroy_table(table);
/*-------------------------------------------------------------*/
2018-01-21 18:02:43 +01:00
table = ft_create_table();
2018-02-27 18:41:57 +01:00
ft_set_cell_option(table, FT_ANY_ROW, 0, FT_OPT_TEXT_ALIGN, CenterAligned);
ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, LeftAligned);
2018-02-27 18:41:57 +01:00
ft_hdr_printf_ln(table, "No.|Name|Avg. Mark");
const char **tab[2] = {
2018-01-21 18:02:43 +01:00
row1,
row2
};
2018-01-21 18:02:43 +01:00
ft_table_write_ln(table, 2, 3, tab);
2018-01-21 18:02:43 +01:00
printf("Table:\n");
printf("%s\n", ft_to_string(table));
ft_destroy_table(table);
table = NULL;
2018-01-01 09:26:34 +01:00
}