aboutsummaryrefslogtreecommitdiff
path: root/get_next_line_utils.c
AgeCommit message (Collapse)Author
2019-11-05changed rest bufs back to not malloc'd, empty line on EOFHEADrawmasterCharles
2019-11-03Fixed rest and buf memory leaksCharles
2019-11-03Rewrite to handle massive BUFFER_SIZECharles
The rest is malloc'd (memory leaks if user doesnt read entier file) The tmp buf in also malloc'd because the stack hasnt enought memory
2019-10-27Fixed memory leak at end of fileCharles
2019-10-20WIP: Normed, fixed double free in ft_strappendCharles
2019-10-19Removed dynamic restCharles
Because if user doesnt read a file until the end, this would cause memory leak. All moulitest tests pass except for large file with certain buffer sizes greater than the line len and smaller than the file len.
2019-10-11Rewrite with dynamic bufferCharles
- ft_strappend: ft_strcat with resize - still malloc issues in ft_strappend
2019-10-11Moulitest passed except bonus testsrecursionCharles
- they updated the pdf, we can use `free`, fuck my life - think they check if i read BUFFER_SIZE, i dont, fuck my life - get reset --hard i guess
2019-10-10Work with not newline terminated fildesCharles
- 3 tests of moulitest still red - get_next_line has 30 lines
2019-10-10WIP: not getting last part if buff size too highCharles
2019-10-09WIP: removed freeCabergs Charles
Doesnt work with some buffer sizes
2019-10-08Working with basic inputCabergs Charles