ack/lang/cem/libcc.ansi/stdio/fgets.c

25 lines
342 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* fgets.c - get a string from a file
*/
/* $Header$ */
#include <stdio.h>
char *
fgets(char *s, int n, FILE *stream)
{
register int ch;
register char *ptr;
ptr = s;
while (--n > 0 && (ch = getc(stream)) != EOF) {
*ptr++ = ch;
if ( ch == '\n')
break;
}
if (ch == EOF && ptr==s)
return(NULL);
*ptr = '\0';
return(s);
}