BufIO is a small C library which implements buffered I/O.
Note
This library was implemented for educational purposes.
C library implementations should use buffers for I/O by default, but the
buffer size may be smaller than the default used in this library (8KiB).See this example on modifying the default buffer size without using this library.
To install the library, run the following commands:
$ git clone https://github.com/jwren0/bufio.git
$ cd bufio/
# make install
$ make build
$ make test
# make install
# make uninstall