As long as you're still using asterisks in your code, you're going to be manipulating the original data structure, which is probably bad juju.

Chances are that if you want to manipulate the data, you want to pull it out into its own variable, probably using strcpy() or equivalent.

That said, atoi(), for example, doesn't require manipulating the original data.
_________________________
Bitt Faulk