diff options
Diffstat (limited to 'c01/ex00/ft_ft.c')
| -rw-r--r-- | c01/ex00/ft_ft.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/c01/ex00/ft_ft.c b/c01/ex00/ft_ft.c new file mode 100644 index 0000000..51aaef3 --- /dev/null +++ b/c01/ex00/ft_ft.c @@ -0,0 +1,16 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_ft.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/03 17:45:03 by cacharle #+# #+# */ +/* Updated: 2019/07/03 18:16:42 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +void ft_ft(int *nbr) +{ + *nbr = 42; +} |
