mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
20 lines
297 B
C
20 lines
297 B
C
![]() |
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <linux/string.h>
|
||
|
|
||
|
/**
|
||
|
* memdup - duplicate region of memory
|
||
|
*
|
||
|
* @src: memory region to duplicate
|
||
|
* @len: memory region length
|
||
|
*/
|
||
|
void *memdup(const void *src, size_t len)
|
||
|
{
|
||
|
void *p = malloc(len);
|
||
|
|
||
|
if (p)
|
||
|
memcpy(p, src, len);
|
||
|
|
||
|
return p;
|
||
|
}
|