fix: add libft include

This commit is contained in:
2025-09-29 20:02:58 +02:00
parent a53f74af41
commit d3b4c38ff4

View File

@@ -1,3 +1,5 @@
#include "libft.h"
int ft_isascii(int c) int ft_isascii(int c)
{ {
return (c >= 0 && c <= 127); return (c >= 0 && c <= 127);