1989-05-30 13:34:25 +00:00
|
|
|
/*
|
|
|
|
* gets.c - read a line from a stream
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-05-30 13:34:25 +00:00
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
#include <stdio.h>
|
1989-05-30 13:34:25 +00:00
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
char* gets(char* s)
|
1989-05-30 13:34:25 +00:00
|
|
|
{
|
2018-06-21 20:33:47 +00:00
|
|
|
register FILE* stream = stdin;
|
1989-05-30 13:34:25 +00:00
|
|
|
register int ch;
|
2018-06-21 20:33:47 +00:00
|
|
|
register char* ptr;
|
1989-05-30 13:34:25 +00:00
|
|
|
|
|
|
|
ptr = s;
|
1989-12-18 15:04:14 +00:00
|
|
|
while ((ch = getc(stream)) != EOF && ch != '\n')
|
1989-05-30 13:34:25 +00:00
|
|
|
*ptr++ = ch;
|
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
if (ch == EOF)
|
|
|
|
{
|
|
|
|
if (feof(stream))
|
|
|
|
{
|
|
|
|
if (ptr == s)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
1989-12-18 15:04:14 +00:00
|
|
|
}
|
1989-05-30 13:34:25 +00:00
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
return s;
|
|
|
|
}
|