Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
stdio
/
__overflow.c
blob: e65a594dd7bf190a5481fc707a8f902812fe0ca3 [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
int
__overflow
(
FILE
*
f
,
int
_c
)
{
unsigned
char
c
=
_c
;
if
(!
f
->
wend
&&
__towrite
(
f
))
return
EOF
;
if
(
f
->
wpos
!=
f
->
wend
&&
c
!=
f
->
lbf
)
return
*
f
->
wpos
++
=
c
;
if
(
f
->
write
(
f
,
&
c
,
1
)!=
1
)
return
EOF
;
return
c
;
}