Hi, I am using TestStand 3.1 and I have the StringConverter.c with CVI 8.0 with the function:
char * string_concat_2 (char* str1,char* str2)
{
char * str_ret;
str_ret = calloc(200, sizeof(char*));
str_ret = strcat (str_ret, str1);
str_ret = strcat (str_ret, str2);
return str_ret;
}
I would like to use it through Teststand, so I add a sequence using 'StringValueTest'. I Spectify Module CVI & link to StringConverter.c and type in Function Name: char * string_concat_2 (char* str1,char* str2)
1. How I define to send the string1 ("Hello") & string2 ("World") to the Module?
2. How I define to string return ("HelloWorld" from the Module?
Thanks