<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>A howl on the wind... &#187; C</title>
	<atom:link href="http://tinodidriksen.com/category/code/c-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://tinodidriksen.com</link>
	<description>The words and ideas of Tino Didriksen</description>
	<lastBuildDate>Thu, 26 Apr 2012 16:00:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Language Comparison: Find Longest Line</title>
		<link>http://tinodidriksen.com/2010/03/17/language-comparison-find-longest-line/</link>
		<comments>http://tinodidriksen.com/2010/03/17/language-comparison-find-longest-line/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 20:13:56 +0000</pubDate>
		<dc:creator>Tino Didriksen</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://tinodidriksen.com/?p=222</guid>
		<description><![CDATA[The task: Write a portable tool that takes a file name as first argument, and from that file outputs the number of lines, the longest line, the length of the longest line, and the line number of the longest line, in a binary-safe fashion (meaning, \n is the only reason a line should be delimited; [...]]]></description>
		<wfw:commentRss>http://tinodidriksen.com/2010/03/17/language-comparison-find-longest-line/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snippet: Convert Hex to Text</title>
		<link>http://tinodidriksen.com/2010/01/31/snippet-convert-hex-to-text/</link>
		<comments>http://tinodidriksen.com/2010/01/31/snippet-convert-hex-to-text/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 22:29:24 +0000</pubDate>
		<dc:creator>Tino Didriksen</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://tinodidriksen.com/?p=161</guid>
		<description><![CDATA[http://tinodidriksen.com/uploads/code/c/hex-to-text.c #include &#60;stdlib.h&#62; #include &#60;stdio.h&#62; #include &#60;string.h&#62; int main() { char buf[] = "54657374"; size_t len = strlen(buf); if (len &#038; 1) { printf("Cannot take hex from odd length string.\n"); exit(1); } char *result = (char*)malloc(len/2 + 1); memset(result, 0, len/2 + 1); for (size_t i = 0 ; i &#60; len/2 ; ++i) { [...]]]></description>
		<wfw:commentRss>http://tinodidriksen.com/2010/01/31/snippet-convert-hex-to-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

