repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move msghdr and cmsghdr out of bits/socket.h
[musl.git]
/
src
/
string
/
strdup.c
blob
d4c274494f654e2fe04ce7384431f5dfdb817c03
1
#include <stdlib.h>
2
#include <string.h>
3
4
char
*
strdup
(
const char
*
s
)
5
{
6
size_t
l
=
strlen
(
s
);
7
char
*
d
=
malloc
(
l
+
1
);
8
if
(!
d
)
return
NULL
;
9
return
memcpy
(
d
,
s
,
l
+
1
);
10
}