1 2 3 4 5 6 7
#ifndef MATHLIB_H #define MATHLIB_H int c_add(int a, int b); int c_multiply(int a, int b); #endif