0
0
This commit is contained in:
Guy Baconniere
2021-08-16 16:51:24 +02:00
parent 0909750997
commit ef1c6b5e75
16 changed files with 332 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
/* By: gbaconni <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/13 12:46:41 by gbaconni #+# #+# */
/* Updated: 2021/08/13 13:58:09 by gbaconni ### ########.fr */
/* Updated: 2021/08/16 13:44:04 by gbaconni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,5 +26,7 @@ int main(void)
scanf("%s", str);
result = ft_atoi(str);
printf("str=%s result=%d (ft_atoi)\n", str, result);
result = atoi(str);
printf("str=%s result=%d (atoi)\n", str, result);
return (0);
}