www.delorie.com/djgpp/doc/libc-2.01/libc_267.html   search  
Go to the first, previous, next, last section, table of contents.


fgets

Syntax

#include <stdio.h>

char *fgets(char *buffer, int maxlength, FILE *file);

Description

This function reads as much of a line from a file as possible, stopping when the buffer is full (maxlength-1 characters), an end-of-line is detected, or EOF or an error is detected. It then stores a NULL to terminate the string.

Return Value

The address of the buffer is returned on success, if EOF is encountered before any characters are stored, or if an error is detected, NULL is returned instead.

Example

char buf[100];
while (fgets(buf, 100, stdin))
  fputs(buf, stdout);


Go to the first, previous, next, last section, table of contents.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997