Bruce Korb wrote: > I found my round tuit: The problem with "char const" is that > strtoul takes a "char **" as its second argument. So it is > rather a bother to recast a "char const **" address to "char **" > all the time.
Yes, it is a bit of a problem. You can work around it by declaring the pointer variable as 'char *' but nevertheless don't do write accesses through it. Bruno