From: J.P. K. <jp...@he...> - 2001-12-13 12:34:19
|
> > The const casts I dealt with by introducing a new variable > > char *tmpstring > > and using strcpy to copy a const char * (or quoted string) into > > tmpstring, and then used that. > > Ick! Yup. > Can you not fix the calls (that do not change their string) using > const_cast? Probably - however that appears to be a C++ extension, and I don't know any C++. However I am reading what documentation I can find to work out if we can use it, and how to use it if we can. Julian |