diff options
Diffstat (limited to 'libft')
| -rw-r--r-- | libft/src/ft_split.c | 10 | ||||
| -rw-r--r-- | libft/src/ft_uitoa.c | 2 | 
2 files changed, 6 insertions, 6 deletions
diff --git a/libft/src/ft_split.c b/libft/src/ft_split.c index 69aeefe..a9d9376 100644 --- a/libft/src/ft_split.c +++ b/libft/src/ft_split.c @@ -18,23 +18,23 @@ static size_t	ft_count_words(const char *s, char c)  {  	size_t	i;  	size_t	count; -	unsigned char	ibool; +	t_bool	ibool;  	i = 0;  	count = 0; -	ibool = 1; +	ibool = TRUE;  	while (s[i])  	{  		while (s[i] == c && s[i])  			i++;  		while (s[i] != c && s[i])  		{ -			if (ibool == 1) +			if (ibool == TRUE)  				count++; -			ibool = 0; +			ibool = FALSE;  			i++;  		} -		ibool = 1; +		ibool = TRUE;  	}  	return (count);  } diff --git a/libft/src/ft_uitoa.c b/libft/src/ft_uitoa.c index 9a58b32..89d8245 100644 --- a/libft/src/ft_uitoa.c +++ b/libft/src/ft_uitoa.c @@ -17,7 +17,7 @@ char	*ft_uitoa(unsigned long n)  {  	char			*s;  	unsigned long	nb; -	unsigned char			i; +	unsigned char	i;  	i = ft_uintlen(n) - 1;  	if (!(s = (char*)malloc((i + 2) * sizeof(char))))  | 
