mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 21:35:07 +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;
|
||
|
}
|