Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
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
;
}