/* ************************************************************** */ /* * TESTPARAM.H * * Zachary Wolf * 11/16/00 */ #ifndef __TESTPARAM_HEADER #define __TESTPARAM_HEADER #if defined(__cplusplus) || defined(__cplusplus__) extern "C" { #endif /* ************************************************************** */ /* CONSTANTS */ #define TESTPARAM_MAX_CMD 80 #define TESTPARAM_MAX_NUM_TEST_PARAM 20 #define TESTPARAM_MAX_NAME_LENGTH 40 /* ************************************************************** */ /* PUBLIC FUNCTION DECLARATIONS */ void testparam_init(char dat_file_in[], char plt_file_in[], char log_file_in[]); void testparam_meas(int* num_test_param, char test_param_name[][TESTPARAM_MAX_NAME_LENGTH], double test_param_value[]); void testparam_dat_meas(int num_test_param, char test_param_name[][TESTPARAM_MAX_NAME_LENGTH], double test_param_value[]); void testparam_plt_meas(int num_test_param, char test_param_name[][TESTPARAM_MAX_NAME_LENGTH], double test_param_value[]); void testparam_exit(void); /* ************************************************************** */ /* DONE */ #if defined(__cplusplus) || defined(__cplusplus__) } #endif #endif