1 2 3 4 5 6 7 8 9
#include "mathlib.h" int c_add(int a, int b) { return a + b; } int c_multiply(int a, int b) { return a * b; }