> * Instead of strcpy or strcat, use memcpy. Remember to ensure that > the string is terminated if you are not copying a terminator. What about using strlcpy/strlcat (providing implementations for platforms that don't support them). > -- Luke