2025-02-04 10:43:10 +01:00
|
|
|
#include <stdio.h>
|
2025-02-04 19:27:56 +01:00
|
|
|
#include <stdlib.h>
|
2025-02-04 10:43:10 +01:00
|
|
|
#include "a.h"
|
|
|
|
|
2025-02-04 19:27:56 +01:00
|
|
|
void functionC(void) {
|
|
|
|
printf("Fonction C appelée\n");
|
|
|
|
return;
|
2025-02-04 10:43:10 +01:00
|
|
|
}
|