mirror of
https://github.com/fluencelabs/musl
synced 2025-07-03 00:22:11 +00:00
9 lines
157 B
C
9 lines
157 B
C
#include "stdio_impl.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;
|
|
}
|