~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/memcpy.c

Fixing a few comments and a few tests referring to old BSD functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  moves len bytes from src to dst.  The result is dst.  This is not
19
19
  the same as strncpy or strnmov, while move a maximum of len bytes
20
20
  and stop early if they hit a NUL character.  This moves len bytes
21
 
  exactly, no more, no less.  See also bcopy() and bmove() which do
22
 
  not return a value but otherwise do the same job.
 
21
  exactly, no more, no less.
23
22
*/
24
23
 
25
24
#include "strings.h"