I have a A.c
file that contains some char*
variable str1
.
I have a B.c
file that contains some f()
function, that make some transformation on a char*
variable.
My point is: How can I pass the value of str
to B.c
, then compute the new string thanks to f()
, and afterwards send back the new string value to A.c
?