|
NAMEfgetline() - gets a line from a fileSYNOPSISint fgetline(f,buf,length) FILE *f; char *buf; int length; DESCRIPTIONfgetline() reads up to length characters from the input file using getc() (q.v.). The transfer is also terminated by a newline, end of file, or read error. The newline character is stripped and the string is NULL ('\0') terminated.RETURNS
NOTESnone
Visit the GSP FreeBSD Man Page Interface. |