Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
stdio
/
gets.c
blob: 6c4645e5640b7b9d4df8387346a02122dfc0f5ea [
file
]
#include
"stdio_impl.h"
#include
<limits.h>
#include
<string.h>
char
*
gets
(
char
*
s
)
{
char
*
ret
=
fgets
(
s
,
INT_MAX
,
stdin
);
if
(
ret
&&
s
[
strlen
(
s
)-
1
]
==
'\n'
)
s
[
strlen
(
s
)-
1
]
=
0
;
return
ret
;
}