CAP/MiniC/TP06/tests/provided/basic-functions/test_fun_decl03.c

12 lines
141 B
C
Raw Permalink Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
// Forward declaration of function with two parameters
int f(int x, bool y);
int main(){
return 0;
}
// EXPECTED