<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for fydo.net</title>
	<atom:link href="http://fydo.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://fydo.net</link>
	<description>On the Internet, nobody knows you&#039;re a cat.</description>
	<lastBuildDate>Thu, 04 Feb 2010 16:17:26 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Yet another new wordpress theme by Kristen</title>
		<link>http://fydo.net/personal/new-wordpress-theme/comment-page-1#comment-29476</link>
		<dc:creator>Kristen</dc:creator>
		<pubDate>Thu, 04 Feb 2010 16:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/?p=448#comment-29476</guid>
		<description>No new posts? Where&#039;s that Ludum Dare game of yours that you promised to posts? You&#039;re website looks great, sweetie! I love you!</description>
		<content:encoded><![CDATA[<p>No new posts? Where&#8217;s that Ludum Dare game of yours that you promised to posts? You&#8217;re website looks great, sweetie! I love you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by Jason Sullivan</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-26348</link>
		<dc:creator>Jason Sullivan</dc:creator>
		<pubDate>Mon, 23 Nov 2009 18:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-26348</guid>
		<description>@Gregory,
I&#039;m working on something quite similar and would love to see the source code.</description>
		<content:encoded><![CDATA[<p>@Gregory,<br />
I&#8217;m working on something quite similar and would love to see the source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by Chanaka</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-25960</link>
		<dc:creator>Chanaka</dc:creator>
		<pubDate>Fri, 13 Nov 2009 11:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-25960</guid>
		<description>This is an excellent implementation of vector like structure in c. It really works for me.</description>
		<content:encoded><![CDATA[<p>This is an excellent implementation of vector like structure in c. It really works for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by Abhijeet</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-24402</link>
		<dc:creator>Abhijeet</dc:creator>
		<pubDate>Sun, 20 Sep 2009 11:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-24402</guid>
		<description>Hi, 

this is really a great post, and solved a part of my project.. I have very
little knowledge of C, and this was useful. Sometimes I love C++ more 
over C. :P
@Gregory: Hey mate, can ya help me with your generic version. your help 
is much appreciated.

Regards,</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>this is really a great post, and solved a part of my project.. I have very<br />
little knowledge of C, and this was useful. Sometimes I love C++ more<br />
over C. <img src='http://fydo.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
@Gregory: Hey mate, can ya help me with your generic version. your help<br />
is much appreciated.</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by mctayong</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-21802</link>
		<dc:creator>mctayong</dc:creator>
		<pubDate>Tue, 14 Jul 2009 16:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-21802</guid>
		<description>great tutorial! this really helped me a lot! wow!</description>
		<content:encoded><![CDATA[<p>great tutorial! this really helped me a lot! wow!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by Gregory Kramida</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-21596</link>
		<dc:creator>Gregory Kramida</dc:creator>
		<pubDate>Wed, 08 Jul 2009 11:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-21596</guid>
		<description>Actually, never mind that, I got the dynamic array of variable element type to work. Anyone interested in the source can post a request here.</description>
		<content:encoded><![CDATA[<p>Actually, never mind that, I got the dynamic array of variable element type to work. Anyone interested in the source can post a request here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by Gregory Kramida</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-21576</link>
		<dc:creator>Gregory Kramida</dc:creator>
		<pubDate>Tue, 07 Jul 2009 16:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-21576</guid>
		<description>This kind of dynamic array only stores elements of type &quot;DATA&quot;, which are structs with two fields - a string and an integer. What if you want to make a dynamic array structure that supports any type of element?

I&#039;ve been trying to do it and ran into some weird trouble... I have another kind of field in my dynamic array for this purpose, element size, which is assigned to the array with a special initialization function. It is then used in all subsequent reallocations.

For some reason, at some point realloc messes up my data and then outputs some memory access error (realloc?? how is that possible?)... Anyone have some sugguestions?</description>
		<content:encoded><![CDATA[<p>This kind of dynamic array only stores elements of type &#8220;DATA&#8221;, which are structs with two fields &#8211; a string and an integer. What if you want to make a dynamic array structure that supports any type of element?</p>
<p>I&#8217;ve been trying to do it and ran into some weird trouble&#8230; I have another kind of field in my dynamic array for this purpose, element size, which is assigned to the array with a special initialization function. It is then used in all subsequent reallocations.</p>
<p>For some reason, at some point realloc messes up my data and then outputs some memory access error (realloc?? how is that possible?)&#8230; Anyone have some sugguestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on a tutorial on &#8216;dynamic&#8217; arrays in C by tinkertim</title>
		<link>http://fydo.net/gamedev/dynamic-arrays/comment-page-1#comment-21240</link>
		<dc:creator>tinkertim</dc:creator>
		<pubDate>Sun, 28 Jun 2009 16:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/misc/dynamic-arrays#comment-21240</guid>
		<description>I would have made AddToArray() a signed int type that returned:

 - The number of elements currently in the array on success
 - 0 on a non-fatal error (i.e., DATA is in tact)
 - -1 on a fatal error (i.e. , don&#039;t use DATA anymore and don&#039;t try to free it)

I also suggest the comment made by bbulkow which in essence makes realloc() (and by extension AddToArray() ) transactional. 

Beyond that ... ThisIsNotJava(Its_C);

I know .. I know .. everyone&#039;s a ^@*&amp;^ critic :)</description>
		<content:encoded><![CDATA[<p>I would have made AddToArray() a signed int type that returned:</p>
<p> &#8211; The number of elements currently in the array on success<br />
 &#8211; 0 on a non-fatal error (i.e., DATA is in tact)<br />
 &#8211; -1 on a fatal error (i.e. , don&#8217;t use DATA anymore and don&#8217;t try to free it)</p>
<p>I also suggest the comment made by bbulkow which in essence makes realloc() (and by extension AddToArray() ) transactional. </p>
<p>Beyond that &#8230; ThisIsNotJava(Its_C);</p>
<p>I know .. I know .. everyone&#8217;s a ^@*&amp;^ critic <img src='http://fydo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Towlr Flash Port by Dorten</title>
		<link>http://fydo.net/projects/towlr/comment-page-1#comment-20069</link>
		<dc:creator>Dorten</dc:creator>
		<pubDate>Thu, 04 Jun 2009 11:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/?page_id=144#comment-20069</guid>
		<description>Woosh! Cake on 20th try!</description>
		<content:encoded><![CDATA[<p>Woosh! Cake on 20th try!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deadly catch by RB[0]</title>
		<link>http://fydo.net/art/sktch/deadly-catch/comment-page-1#comment-19740</link>
		<dc:creator>RB[0]</dc:creator>
		<pubDate>Fri, 29 May 2009 15:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://fydo.net/?p=409#comment-19740</guid>
		<description>I love that show - and your image there :)
Only thing it&#039;s missing is a giant crab ;)</description>
		<content:encoded><![CDATA[<p>I love that show &#8211; and your image there <img src='http://fydo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Only thing it&#8217;s missing is a giant crab <img src='http://fydo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
