inkey(entry_str); --> it is entry_str.

You call this function with this string as parameter:
process_entry(entry_str);
but in this function is notting to take this parameter:
function process_entry(STRING* my_str)
Now use str_cpy to copy the entry_str in the string1 or string2
str_cpy(string1,entry_str);


Last edited by Widi; 06/08/10 20:24.