-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
20 lines (20 loc) · 1.04 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ytaya <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/08 16:01:23 by ytaya #+# #+# */
/* Updated: 2021/11/08 16:11:11 by ytaya ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdio.h>
#include <math.h>
int main(int argc, char **argv)
{
printf("%d\n", ft_atoi(argv[1]));
printf("%d\n", atoi(argv[1]));
return (0);
}