ft_striteri, ft_striter: changed int to unsigned int
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2018/04/07 11:17:26 by tmaze #+# #+# */
|
||||
/* Updated: 2018/04/07 11:20:40 by tmaze ### ########.fr */
|
||||
/* Updated: 2018/04/07 11:41:57 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
void ft_striter(char *s, void (*f)(char*))
|
||||
{
|
||||
int i;
|
||||
unsigned int i;
|
||||
|
||||
i = 0;
|
||||
while (s[i])
|
||||
|
Reference in New Issue
Block a user