explicaiton des makefiles presque fini

This commit is contained in:
Hugo LAMY
2019-11-15 19:39:02 +01:00
parent 28e08d8238
commit 848931d537
9 changed files with 289 additions and 50 deletions

7
test/srcs/to_uppercase.c Normal file
View File

@@ -0,0 +1,7 @@
#include "test.h"
int to_uppercase(int a)
{
a -= 32;
return(a);
}