Sean Chittenden <[EMAIL PROTECTED]> said: > Experience tells me that if you're mixing const char *'s with char *'s > in a list, you're going to be in for problems.
Ah, and in fact, nearly every use of "const char *" should really be "const char * const" which protects both the pointer and what it points to. Aaron