Hi All

I'm writing a tool that uses C libraries.

Which means that I have to convert strings into 'const char*'s

So, this is how I think a string is converted into a char:
Code:
const char* c = x.c_str ;
The problem I have now is that my C library functions need a char* not a const char*..

Any suggestions what the best way is to go from a string to a char* ?

Thanks a lot
LuCa