ecriture des regles de makefile en cours

This commit is contained in:
Hugo LAMY
2019-11-08 16:23:21 +01:00
parent 80898b1d80
commit ad9dca840f
13 changed files with 530 additions and 1 deletions

24
main.c Normal file
View File

@@ -0,0 +1,24 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/08 13:33:32 by hulamy #+# #+# */
/* Updated: 2019/11/08 13:33:45 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
/*void ft_putchar(char c);
int transform(int a);
*/
int main()
{
int a = 't';
a = transform(a);
ft_putchar(a);
return (0);
}