File: memmove.c

package info (click to toggle)
gnome-libs 1.4.2-37
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 22,608 kB
  • ctags: 11,411
  • sloc: ansic: 133,185; sh: 9,463; makefile: 1,983; perl: 667; yacc: 318; awk: 285; lisp: 177
file content (18 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
/* This function is in the public domain.  --Per Bothner. */

#ifdef __STDC__
#include <stddef.h>
#else
#define size_t unsigned long
#endif

void *
memmove (s1, s2, n)
     void *s1;
     const void *s2;
     size_t n;
{
  bcopy (s2, s1, n);
  return s1;
}