Manpage of GETLINE

Google
Web www.fiveanddime.net

GETLINE

Section: NEWLIB (3)
Updated: 2005 Feb 23
Index Return to Main Contents
 

NAME

3.26 `getline'--read a line from a file

 

SYNOPSIS


     #include <stdio.h>
     ssize_t getline(char **BUFPTR, size_t *N, FILE *FP);  

DESCRIPTION

`getline' reads a file FP up to and possibly including the newline character. The line is read into a buffer pointed to by BUFPTR and designated with size *N. If the buffer is not large enough, it will be dynamically grown by `getdelim'. As the buffer is grown, the pointer to the size N will be updated.


   `getline' is equivalent to getdelim(bufptr, n, ', fp);

 

RETURNS

`getline' returns `-1' if no characters were successfully read, otherwise, it returns the number of bytes successfully read. at end of file, the result is nonzero.

 

PORTABILITY

`getline' is a glibc extension.


   No supporting OS subroutines are directly required.

 

SEE ALSO

getline is part of the libc library. The full documentation for libc is maintained as a Texinfo manual. If info and libc are properly installed at your site, the command
info libc

will give you access to the complete manual.


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURNS
PORTABILITY
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 21:25:18 GMT, May 16, 2005



www.fiveanddime.net








Google
Web www.fiveanddime.net