<feed xmlns='http://www.w3.org/2005/Atom'>
<title>get_next_line.git/get_next_line_utils.c, branch master</title>
<subtitle>School project: Return the next line of a file each it is called
</subtitle>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/'/>
<entry>
<title>changed rest bufs back to not malloc'd, empty line on EOF</title>
<updated>2019-11-05T05:14:28+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-11-03T22:38:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=47ca76eb98d578cc78a6315a5f98504a8241cfec'/>
<id>47ca76eb98d578cc78a6315a5f98504a8241cfec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed rest and buf memory leaks</title>
<updated>2019-11-02T23:33:42+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-11-02T23:33:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=3e54b8257ed66c8f10fa904655f554990931ab88'/>
<id>3e54b8257ed66c8f10fa904655f554990931ab88</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite to handle massive BUFFER_SIZE</title>
<updated>2019-11-02T23:19:45+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-11-02T23:19:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=0a966722ec0236521d99706632a7fe56b7245379'/>
<id>0a966722ec0236521d99706632a7fe56b7245379</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed memory leak at end of file</title>
<updated>2019-10-27T18:34:03+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-27T18:34:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=44dd5832ad0b7af9186bd5369884d258378a5781'/>
<id>44dd5832ad0b7af9186bd5369884d258378a5781</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: Normed, fixed double free in ft_strappend</title>
<updated>2019-10-20T05:39:47+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-20T05:34:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=891dce09989e8ede692d4a6c23e7a208b09ca4d6'/>
<id>891dce09989e8ede692d4a6c23e7a208b09ca4d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed dynamic rest</title>
<updated>2019-10-19T14:27:29+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-19T14:27:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=a407fe611354d71330fc352fbc2a9fe268b4104f'/>
<id>a407fe611354d71330fc352fbc2a9fe268b4104f</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite with dynamic buffer</title>
<updated>2019-10-11T12:30:20+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-11T12:30:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=e0abc6358c4cacc840ac8b3a9a92900f8ce49f0a'/>
<id>e0abc6358c4cacc840ac8b3a9a92900f8ce49f0a</id>
<content type='text'>
- ft_strappend: ft_strcat with resize
- still malloc issues in ft_strappend
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- ft_strappend: ft_strcat with resize
- still malloc issues in ft_strappend
</pre>
</div>
</content>
</entry>
<entry>
<title>Moulitest passed except bonus tests</title>
<updated>2019-10-11T09:39:38+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-11T09:28:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=c24fb630859217dbf8cce9f834fe1c4a058d17a0'/>
<id>c24fb630859217dbf8cce9f834fe1c4a058d17a0</id>
<content type='text'>
- 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- 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
</pre>
</div>
</content>
</entry>
<entry>
<title>Work with not newline terminated fildes</title>
<updated>2019-10-10T14:40:01+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-10T14:40:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=988090ac0de3cc7a57e3cd8dd76ffc43efd2fc46'/>
<id>988090ac0de3cc7a57e3cd8dd76ffc43efd2fc46</id>
<content type='text'>
- 3 tests of moulitest still red
- get_next_line has 30 lines
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- 3 tests of moulitest still red
- get_next_line has 30 lines
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: not getting last part if buff size too high</title>
<updated>2019-10-10T08:20:32+00:00</updated>
<author>
<name>Charles</name>
<email>sircharlesaze@gmail.com</email>
</author>
<published>2019-10-10T08:20:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/get_next_line.git/commit/?id=2df0d3e47a9deb4676b4fd82a1924da4181ef9d9'/>
<id>2df0d3e47a9deb4676b4fd82a1924da4181ef9d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
