// file: $(ECE_1111)/labs/01/l01_02/myfuncts_00.cc // // revision history: // 20180724 (JP): initial version // // local include files // #include "myprog.h" // function: set_value_long // // arguments: // long value: the input value // // return: the value of the input // // This function simply returns the value of the argument. // long set_value_long(long value_a) { return value_a; }