// 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 // float set_value(float val); float set_value(float* val); // define a second function: // this function allocates memory // void mymemory(char* buf); // recursion // long fact(long arg); // end of include file // #endif