24319eb2dcf62b431648bfef6641b2eda5854476
[musl] / src / stdio / gets.c
1 #include "stdio_impl.h"
2
3 char *gets(char *s)
4 {
5         char *ret = fgets(s, INT_MAX, stdin);
6         if (ret && s[strlen(s)-1] == '\n') s[strlen(s)-1] = 0;
7         return ret;
8 }