// file: $(ECE_1111)/labs/01/l01_04/src/functs/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(long val); // define the second function: // this function initializes a float value // float set_value_float(float val); // define the third function: // this function computes a sum // float compute_sum(long arg1, float arg2); // end of include file // #endif