History log of /seL4-camkes-master/projects/musllibc/src/stdio/fgetln.c
Revision Date Author Comments
# 57174444 11-Dec-2013 Szabolcs Nagy <nsz@port70.net>

include cleanups: remove unused headers and add feature test macros


# 835f9f95 08-Nov-2012 Rich Felker <dalias@aerifal.cx>

clean up stdio_impl.h

this header evolved to facilitate the extremely lazy practice of
omitting explicit includes of the necessary headers in individual
stdio source files; not only was this sloppy, but it also increased
build time.

now, stdio_impl.h is only including the headers it needs for its own
use; any further headers needed by source files are included directly
where needed.


# 61718273 11-Aug-2012 Rich Felker <dalias@aerifal.cx>

add bsd fgetln function

optimized to avoid allocation and return lines directly out of the
stream buffer whenever possible.