├── .gitignore ├── README.md ├── en.subject.pdf ├── get_next_line.c ├── get_next_line.h ├── get_next_line_bonus.c ├── get_next_line_bonus.h ├── get_next_line_utils.c ├── get_next_line_utils_bonus.c └── tests ├── J. K. Rowling - Harry Potter 1 - Sorcerer's Stone.txt ├── J. K. Rowling - Harry Potter 3 - Prisoner of Azkaban.txt ├── basic_oneline.txt ├── big_line_no_nl.txt ├── empty.txt ├── main.c ├── test.txt ├── test2.txt └── the-king-james-bible.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/README.md -------------------------------------------------------------------------------- /en.subject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/en.subject.pdf -------------------------------------------------------------------------------- /get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line.c -------------------------------------------------------------------------------- /get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line.h -------------------------------------------------------------------------------- /get_next_line_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line_bonus.c -------------------------------------------------------------------------------- /get_next_line_bonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line_bonus.h -------------------------------------------------------------------------------- /get_next_line_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line_utils.c -------------------------------------------------------------------------------- /get_next_line_utils_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/get_next_line_utils_bonus.c -------------------------------------------------------------------------------- /tests/J. K. Rowling - Harry Potter 1 - Sorcerer's Stone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/tests/J. K. Rowling - Harry Potter 1 - Sorcerer's Stone.txt -------------------------------------------------------------------------------- /tests/J. K. Rowling - Harry Potter 3 - Prisoner of Azkaban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/tests/J. K. Rowling - Harry Potter 3 - Prisoner of Azkaban.txt -------------------------------------------------------------------------------- /tests/basic_oneline.txt: -------------------------------------------------------------------------------- 1 | abdefghijklmnopqrstuvwxyz -------------------------------------------------------------------------------- /tests/big_line_no_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/tests/big_line_no_nl.txt -------------------------------------------------------------------------------- /tests/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/tests/main.c -------------------------------------------------------------------------------- /tests/test.txt: -------------------------------------------------------------------------------- 1 | abc 2 | defgh 3 | ijklmnop q 4 | r 5 | 6 | stuv_w 7 | xy 8 | z 9 | -------------------------------------------------------------------------------- /tests/test2.txt: -------------------------------------------------------------------------------- 1 | abc 2 | d 3 | -------------------------------------------------------------------------------- /tests/the-king-james-bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebypixel02/get_next_line/HEAD/tests/the-king-james-bible.txt --------------------------------------------------------------------------------