"bill" <[EMAIL PROTECTED]> wrote in message news:87227@palm-dev-forum... > > void Seperator (char* Data[], char* text) > { > ...in the function I seperate out the text and put each word into the > Data[index] at their respective indexes > }
It would help to see the source code to your Seperator [sic] function. (By the way, you're not trying to mutate string literals, are you?) > Seperator(Title, Data); > Seperator(Description, Data); > > it seemed to return ok but when I called the function the second time using > Description as the destination array, the Title array changed be equal to > the Description array, they seem to be using the same memory location. Did you mean to call: Seperator(Title, Data); Seperator(Description, Desc); ? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
