Depending on your requirements, each has its benefits and drawbacks. Depending on your architecture, there are versions that are faster than the libc version.
None of the functions you have listed are true equivalents, so, your situation will dictate which you need to use.
strcpy and stpcpy are functionally equivalent, but differ only in return value. stpcpy is superior because it points to the end of the string, thus letting the caller know how many bytes were copied.
[+] [-] cd34|14 years ago|reply
None of the functions you have listed are true equivalents, so, your situation will dictate which you need to use.
[+] [-] codehero|14 years ago|reply
[+] [-] steve-howard|14 years ago|reply
memcpy is probably best if you're keeping track of lengths separately.
[+] [-] tlb|14 years ago|reply