I was using the following code to convert the string to
lowercase.
string foo = "Some Mixed Case Text";
transform(foo.b egin(), foo.end(), foo.begin(), tolower);
I thought the above code is portable.
But, the following page has a different view on this:
http://lists.debian.org/debian-gcc/2.../msg00092.html
Can anybody comment on it ?
Also, I would...