#include #include "../ex04/ft_strs_to_tab.c" int main(void) { char *strs[4]; t_stock_str *tab; strs[0] = "First"; strs[1] = "Second"; strs[2] = "Third"; tab = ft_strs_to_tab(3, strs); ft_show_tab(tab); return (0); }