Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
stdio
/
getline.c
blob: 476d0b09617430764552052fc77827f14be8c8a1 [
file
]
#include
<stdio.h>
ssize_t
getline
(
char
**
restrict s
,
size_t
*
restrict n
,
FILE
*
restrict f
)
{
return
getdelim
(
s
,
n
,
'\n'
,
f
);
}