home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------------------------------*/
- /*----------------------------- fgetln -------------------------*/
- /*DESCRIPTION: Copies chars from the stream fp to dest until */
- /* a newline char is encountered. Does not place the */
- /* newline ch in dest. Dest is null terminated. */
- /* */
- /*RETURNS: the address of dest or NULL on end of file or error */
- /*USES: nothing */
- /*IN: ffile.c */
- /*--------------------------------------------------------------*/
-
- char *fgetln(char *dest, FILE *fp)