Char *text;
text = "unfit";//just something to bite on!
In theory the above should not compile without at least a warning. (Did you check all warnings?)
The type of a string literal is not char*, it's const char* const. That assignment should fail.
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
