Initial revision
This commit is contained in:
17
lang/cem/libcc/stdio/gets.c
Normal file
17
lang/cem/libcc/stdio/gets.c
Normal file
@@ -0,0 +1,17 @@
|
||||
#include <stdio.h>
|
||||
|
||||
char *gets(str)
|
||||
char *str;
|
||||
{
|
||||
register int ch;
|
||||
register char *ptr;
|
||||
|
||||
ptr = str;
|
||||
while ((ch = getc(stdin)) != EOF && ch != '\n')
|
||||
*ptr++ = ch;
|
||||
|
||||
if (ch == EOF && ptr==str)
|
||||
return(NULL);
|
||||
*ptr = '\0';
|
||||
return(str);
|
||||
}
|
||||
Reference in New Issue
Block a user