gets


Description:

public ssize_t gets (uint8[] buf)

Reads in at most one less than buf.length characters from this and stores them into the buffer pointed to by buf.

Reading stops after an EOS or newline ('\n'). If a newline is read, it is stored into the buffer. A '\0' is stored after the last character in the buffer.

Parameters:

this

stream

buf

line buffer

max

max length of a line

Returns:

the number of characters read into buf on success or %-1 on fail.