2022-01-15 17:00:23 -05:00
|
|
|
#include "hi.h" /* This is our headerfile */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Here's the actual definition of our say_hi() function
|
|
|
|
* as you can see it simply returns the string "Hi" Or does it??
|
|
|
|
*/
|
|
|
|
|
|
|
|
char* say_hi(){
|
2022-02-07 15:53:55 -05:00
|
|
|
return "Hi";
|
2022-01-15 17:00:23 -05:00
|
|
|
}
|
|
|
|
/* Back over to main to finish our program */
|