about summary refs log tree commit diff
path: root/libio/tst-readline.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright years in recent commitsFlorian Weimer2018-07-101-1/+1
|
* libio: Implement internal function __libc_readline_unlockedFlorian Weimer2018-07-061-0/+236
This is a variant of fgets which fails with ERANGE if the buffer is too small, and the buffer length is given as an argument of type size_t. This function will be useful for implementing NSS file reading operations. Compared to a direct implementation using the public API, it avoids an lseek system call in case the line terminator can be found in the internal read buffer.