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