[OpenAFS-devel] strings redux

chas williams chas@cmf.nrl.navy.mil
Wed, 08 Aug 2001 20:17:08 -0400


>Does it actually need memmove?  (Everything should really have memmove;
>it's in POSIX.)

it might.  memmove is safe for overlapping regions. memcpy may or may not
work right in that case (probably wont really since most memcpy operate on
a word basis right?)  however, if you have memcpy you should have memmove.