<feed xmlns='http://www.w3.org/2005/Atom'>
<title>c_utils, branch v0.2.1</title>
<subtitle>Basic c utility functions/data structures.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/'/>
<entry>
<title>Merge branch 'develop'</title>
<updated>2020-07-06T15:48:31+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:48:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=392b0b46e151dbb3e441d1c2dcf361bb39dc7794'/>
<id>392b0b46e151dbb3e441d1c2dcf361bb39dc7794</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license</title>
<updated>2020-07-06T15:47:41+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:47:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=da39577a66c9aa355699419149ce050a9cb1c500'/>
<id>da39577a66c9aa355699419149ce050a9cb1c500</id>
<content type='text'>
All files now under MIT license.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All files now under MIT license.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix ordering of functions in double ended queue documentation</title>
<updated>2020-07-06T15:25:45+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:25:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=7f96fdd283c7e6ce7245585d75795a69871e0635'/>
<id>7f96fdd283c7e6ce7245585d75795a69871e0635</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix double ended queue did not print free strings</title>
<updated>2020-07-06T15:18:37+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:13:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=f1b0595ef2549c18b995f182a8ed8e6e44b9cd04'/>
<id>f1b0595ef2549c18b995f182a8ed8e6e44b9cd04</id>
<content type='text'>
Because it is possible for to_string function to generate a new string
here and nothing else sees it after printing it is not guaranteed to be
freed leading to a memory leak. This does mean that if the string is
internal to a struct and expected to be used later then to_string should
duplicate said string (as noted in the documentation).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because it is possible for to_string function to generate a new string
here and nothing else sees it after printing it is not guaranteed to be
freed leading to a memory leak. This does mean that if the string is
internal to a struct and expected to be used later then to_string should
duplicate said string (as noted in the documentation).
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix double ended queue remove</title>
<updated>2020-07-06T15:09:27+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:09:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=e1f7e38d660e46b1e32455595c4829f294a2740b'/>
<id>e1f7e38d660e46b1e32455595c4829f294a2740b</id>
<content type='text'>
Did not return the removed object, could easily lead to a memory leak.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Did not return the removed object, could easily lead to a memory leak.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix organize functions order in double ended queue src files</title>
<updated>2020-07-06T15:06:44+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-06T15:06:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=a7dda0e0060d868c8a797b5a05b64d1aa09548d7'/>
<id>a7dda0e0060d868c8a797b5a05b64d1aa09548d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'develop'</title>
<updated>2020-07-05T03:22:28+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-05T03:22:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=8f17093d39db99acd88405873af90b4bfd428a64'/>
<id>8f17093d39db99acd88405873af90b4bfd428a64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'vector' into develop</title>
<updated>2020-07-05T03:22:09+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-05T03:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=f824589fa4b0ba111df624a8927c899bc1e0ca20'/>
<id>f824589fa4b0ba111df624a8927c899bc1e0ca20</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'develop'</title>
<updated>2020-07-05T03:21:11+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-05T03:21:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=0fb0ae61369464e9b2b76039eb074806c50e4474'/>
<id>0fb0ae61369464e9b2b76039eb074806c50e4474</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add reserve function to vectors</title>
<updated>2020-07-05T03:14:34+00:00</updated>
<author>
<name>Tucker Evans</name>
<email>tucker@tuckerevans.com</email>
</author>
<published>2020-07-05T02:17:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tuckerevans.com/projects/c_utils/commit/?id=5fa1551b4a0acc28d5c656479806511ab0c81a18'/>
<id>5fa1551b4a0acc28d5c656479806511ab0c81a18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
