preotection trim et split

This commit is contained in:
Hugo LAMY
2019-12-09 22:03:22 +01:00
parent 418b9e3af6
commit 9fcfd1ba91
6 changed files with 43 additions and 23 deletions

View File

@@ -6,7 +6,7 @@
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/25 13:59:01 by hulamy #+# #+# */
/* Updated: 2019/12/04 15:00:16 by hulamy ### ########.fr */
/* Updated: 2019/12/09 21:25:06 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
@@ -17,14 +17,16 @@
/*
** #include <libc.h>
**
** char *ft_itoa(int n)
** char *ft_itoa(int n);
**
** int main(int ac, char **av)
** {
** if (ac == 2)
** {
** if (ac == 0)
** return (0);
** else if (ac == 2)
** printf("%s\n",ft_itoa(atoi(av[1])));
** }
** else
** printf("%s\n",ft_itoa(0));
** return 0;
** }
*/