// file: $(ECE_1111)/labs/01/l01_03/myprog.h // // revision history: // 20180724 (JP): initial version // // make sure definitions are only made once // #ifndef MYPROG #define MYPROG // include system libraries // #include // define the first function: // this function initializes an integer value // long set_value(long*); float set_value(float val); // define the third function: // this function computes a sum // float compute_sum(long arg1, float arg2); // recursion // float recursion(float arg); long fact(long arg); // end of include file // #endif