ft_striteri, ft_striter: changed int to unsigned int

This commit is contained in:
Tanguy MAZE
2018-04-07 11:52:54 +02:00
parent 1cb14a826a
commit a3462b7b10
3 changed files with 27 additions and 4 deletions

View File

@@ -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])