code-examples/current/algorithms/callingc_zig/c-src/callingc.c

6 lines
73 B
C

#include "callingc.h"
int add_numbers(int a, int b) {
return 2*a+b;
}