<?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 on: Object-Oriented C</title>
	<atom:link href="http://jefflinse.com/2008/object-oriented-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://jefflinse.com/2008/object-oriented-c/</link>
	<description></description>
	<lastBuildDate>Mon, 26 Mar 2012 02:35:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jeff</title>
		<link>http://jefflinse.com/2008/object-oriented-c/comment-page-1/#comment-250</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Wed, 24 Nov 2010 22:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://jefflinse.com/?p=19#comment-250</guid>
		<description>You&#039;re absolutely right, thanks for pointing that out!</description>
		<content:encoded><![CDATA[<p>You&#8217;re absolutely right, thanks for pointing that out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leemes</title>
		<link>http://jefflinse.com/2008/object-oriented-c/comment-page-1/#comment-249</link>
		<dc:creator>leemes</dc:creator>
		<pubDate>Tue, 16 Nov 2010 01:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://jefflinse.com/?p=19#comment-249</guid>
		<description>... and in line 42 you append the other string in reversed order, so it should say:
         str-&gt;str[i] = other[i - oldLen];  
rather than
         str-&gt;str[i] = other[oldLen - i];  

Finally, you iterate over the length of str instead of other in the for loop...

I think that you didn&#039;t test this piece of code, but that wasn&#039;t really the meaning of it. BUT I wanted to mention this things anyway.</description>
		<content:encoded><![CDATA[<p>&#8230; and in line 42 you append the other string in reversed order, so it should say:<br />
         str-&gt;str[i] = other[i - oldLen];<br />
rather than<br />
         str-&gt;str[i] = other[oldLen - i];  </p>
<p>Finally, you iterate over the length of str instead of other in the for loop&#8230;</p>
<p>I think that you didn&#8217;t test this piece of code, but that wasn&#8217;t really the meaning of it. BUT I wanted to mention this things anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leemes</title>
		<link>http://jefflinse.com/2008/object-oriented-c/comment-page-1/#comment-248</link>
		<dc:creator>leemes</dc:creator>
		<pubDate>Tue, 16 Nov 2010 01:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://jefflinse.com/?p=19#comment-248</guid>
		<description>Nice explanation...
But I think there is a mistake in String_append() in line 40:
You resize to the length of the string to be appended rather than increase the size by the length.
So I think it should say:
   _resize(str, oldLen + strlen(other));</description>
		<content:encoded><![CDATA[<p>Nice explanation&#8230;<br />
But I think there is a mistake in String_append() in line 40:<br />
You resize to the length of the string to be appended rather than increase the size by the length.<br />
So I think it should say:<br />
   _resize(str, oldLen + strlen(other));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://jefflinse.com/2008/object-oriented-c/comment-page-1/#comment-30</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Fri, 15 Aug 2008 18:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://jefflinse.com/?p=19#comment-30</guid>
		<description>Nice article, I have recently been experimenting with these concepts myself. Very well presented.</description>
		<content:encoded><![CDATA[<p>Nice article, I have recently been experimenting with these concepts myself. Very well presented.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

