Modification des tests (Création de répertoire make et bake)

This commit is contained in:
2025-02-06 18:54:15 +01:00
parent c28c877ce8
commit 2a6599c5ae
68 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include "b.h"
void functionA(void) {
printf("Fonction A appelée\n");
functionB();
}
int main(void) {
functionA();
return 0;
}