Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
musl
/
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
);
}