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
/
stdio
/
getline.c
blob
476d0b09617430764552052fc77827f14be8c8a1
1
#include <stdio.h>
2
3
ssize_t
getline
(
char
**
restrict s
,
size_t
*
restrict n
,
FILE
*
restrict f
)
4
{
5
return
getdelim
(
s
,
n
,
'
\n
'
,
f
);
6
}