├── 1-num-filter ├── Makefile └── main.cpp ├── 2-block-output ├── Makefile └── main.cpp ├── 3-c-file ├── Makefile ├── file.txt └── main.cpp ├── 4-c-file-seek-functions ├── Makefile ├── file.txt └── main.cpp ├── LICENSE └── README.md /1-num-filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/1-num-filter/Makefile -------------------------------------------------------------------------------- /1-num-filter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/1-num-filter/main.cpp -------------------------------------------------------------------------------- /2-block-output/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/2-block-output/Makefile -------------------------------------------------------------------------------- /2-block-output/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/2-block-output/main.cpp -------------------------------------------------------------------------------- /3-c-file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/3-c-file/Makefile -------------------------------------------------------------------------------- /3-c-file/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/3-c-file/file.txt -------------------------------------------------------------------------------- /3-c-file/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/3-c-file/main.cpp -------------------------------------------------------------------------------- /4-c-file-seek-functions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/4-c-file-seek-functions/Makefile -------------------------------------------------------------------------------- /4-c-file-seek-functions/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/4-c-file-seek-functions/file.txt -------------------------------------------------------------------------------- /4-c-file-seek-functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/4-c-file-seek-functions/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iassasin/streambuf_examples/HEAD/README.md --------------------------------------------------------------------------------