repo.or.cz
/
syslinux-debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git]
/
com32
/
lib
/
mempcpy.c
blob
be23b6670f88b9268ad5806de17fcc497dc6147b
1
/*
2
* mempcpy.c
3
*/
4
5
#include <string.h>
6
#include <stdint.h>
7
8
/* simply a wrapper around memcpy implementation */
9
10
void
*
mempcpy
(
void
*
dst
,
const void
*
src
,
size_t
n
)
11
{
12
13
return
(
char
*)
memcpy
(
dst
,
src
,
n
) +
n
;
14
}