/* file: ./test_functions.h this is an include file that is shared by several functions. */ /* make sure this file is only included one */ #ifndef __TEST_FUNCTIONS #define __TEST_FUNCTIONS /* include system files */ #include /* important definitions */ #define DEPARTMENT_NAME "ee" /* define local functions */ extern "C" { void print_course_number(float course_number); void print_instructor_name(char* name); } /* end of file */ #endif