/* By: ljiriste <ljiriste@student.42prague.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/16 07:19:50 by ljiriste #+# #+# */
-/* Updated: 2024/06/20 12:51:30 by ljiriste ### ########.fr */
+/* Updated: 2024/06/21 12:20:22 by ljiriste ### ########.fr */
/* */
/* ************************************************************************** */
i = 0;
ft_printf("\n%-5s ", "State");
while (i < table->tokens.size)
- ft_printf("%-*s ", column_width - 1,
+ ft_printf("%-*.*s ", column_width - 1, column_width - 1,
((t_token *)ft_vec_access(&table->tokens, i++))->type);
ft_printf("\n");
i = 0;