// 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 #include // define a magical size function // long mysize(float*, long); // define the first function: // this function initializes an integer value // long set_value_long(long); long set_value_long(long*); // 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