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
fix misleading comment in strstr
[musl.git]
/
src
/
passwd
/
fgetspent.c
blob
47473bdb8cd84c0f31f57a89c11e654747589852
1
#include
"pwf.h"
2
#include <pthread.h>
3
4
struct
spwd
*
fgetspent
(
FILE
*
f
)
5
{
6
static char
*
line
;
7
static struct
spwd sp
;
8
size_t
size
=
0
;
9
struct
spwd
*
res
=
0
;
10
int
cs
;
11
pthread_setcancelstate
(
PTHREAD_CANCEL_DISABLE
, &
cs
);
12
if
(
getline
(&
line
, &
size
,
f
) >=
0
&&
__parsespent
(
line
, &
sp
) >=
0
)
res
= &
sp
;
13
pthread_setcancelstate
(
cs
,
0
);
14
return
res
;
15
}