mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 16:51:51 +03:00
24 lines
379 B
C
24 lines
379 B
C
|
#include <stdio.h>
|
||
|
|
||
|
typedef int(*IntFn)(int, int);
|
||
|
typedef char(*CharFn)(char, int);
|
||
|
|
||
|
int add(int x, int y) {
|
||
|
return x+y;
|
||
|
}
|
||
|
|
||
|
int applyIntFn(int x, int y, IntFn f) {
|
||
|
printf("Callback coming\n");
|
||
|
fflush(stdout);
|
||
|
return f(x, y);
|
||
|
}
|
||
|
|
||
|
int applyIntFnPure(int x, int y, IntFn f) {
|
||
|
return f(x, y);
|
||
|
}
|
||
|
|
||
|
char applyCharFn(char c, int x, CharFn f) {
|
||
|
return f(c, x);
|
||
|
}
|
||
|
|