<?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>4thmouse.com &#187; C</title>
	<atom:link href="http://4thmouse.com/index.php/category/programming/c-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://4thmouse.com</link>
	<description>Software Engineering.</description>
	<lastBuildDate>Wed, 28 Jul 2010 03:38:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Opening a TUN Device on UNIX</title>
		<link>http://4thmouse.com/index.php/2009/11/19/opening-a-tun-device-on-unix/</link>
		<comments>http://4thmouse.com/index.php/2009/11/19/opening-a-tun-device-on-unix/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:18:36 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[CentOs]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[tap]]></category>
		<category><![CDATA[tun]]></category>
		<category><![CDATA[tunnel interface]]></category>
		<category><![CDATA[tuntap]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual interface]]></category>

		<guid isPermaLink="false">http://4thmouse.com/?p=286</guid>
		<description><![CDATA[The TUN/TAP interface under Linux provides user space access to Transport (Ethernet) or Network Layer (IP) traffic by allowing a developer to create a &#8220;virtual&#8221; interface that can be openend in user space as a file descriptor.

What is it Used For?
The TUN/TAP interface is most often used by tunneling applications like openVPN. In that scenario, [...]]]></description>
		<wfw:commentRss>http://4thmouse.com/index.php/2009/11/19/opening-a-tun-device-on-unix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spirit Vs. Lex/yacc/et al.</title>
		<link>http://4thmouse.com/index.php/2008/12/10/spirit-vs-lexyaccet-al/</link>
		<comments>http://4thmouse.com/index.php/2008/12/10/spirit-vs-lexyaccet-al/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 20:26:39 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[BNF]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[boost::spirit]]></category>
		<category><![CDATA[LALR]]></category>
		<category><![CDATA[Lex]]></category>
		<category><![CDATA[spirit]]></category>
		<category><![CDATA[Yac]]></category>

		<guid isPermaLink="false">http://4thmouse.com/?p=153</guid>
		<description><![CDATA[What are the differences and when should I use one or the other?

What is Lex/Yacc?
Lex and Yacc are some fairly ancient GNU tools which you can use to parse custom LALR languages (typically programming languages). Lex and Yacc are actually separate programs which generate C code from a custom language unique to each.
Lex generates code [...]]]></description>
		<wfw:commentRss>http://4thmouse.com/index.php/2008/12/10/spirit-vs-lexyaccet-al/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why C Switch Statements Should go the way of the GOTO</title>
		<link>http://4thmouse.com/index.php/2008/03/15/why-c-switch-statements-should-go-the-way-of-the-goto/</link>
		<comments>http://4thmouse.com/index.php/2008/03/15/why-c-switch-statements-should-go-the-way-of-the-goto/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 14:07:22 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[fall through]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://4thmouse.com/index.php/2008/03/15/why-c-switch-statements-should-go-the-way-of-the-goto/</guid>
		<description><![CDATA[The venerable C switch statement keeps showing up in other languages presumably because the people who write new languages are familiar with C and don&#8217;t really think about it.

What is it
So the C-style switch statement is an efficient way of executing code based on an index. For efficiency reasons the index has to be an [...]]]></description>
		<wfw:commentRss>http://4thmouse.com/index.php/2008/03/15/why-c-switch-statements-should-go-the-way-of-the-goto/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Converting hex to Binary in 4 Languages</title>
		<link>http://4thmouse.com/index.php/2008/02/18/converting-hex-to-binary-in-4-languages/</link>
		<comments>http://4thmouse.com/index.php/2008/02/18/converting-hex-to-binary-in-4-languages/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 22:01:59 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://4thmouse.com/index.php/2008/02/18/converting-hex-to-binary-in-4-languages/</guid>
		<description><![CDATA[I&#8217;ve been playing around with some scripting languages recently so I thought I&#8217;d do a small example in a few different languages for laughs.

The Program
So basically I wanted to write a script that takes a string of hexadecimal as input and outputs a stream of binary data:

cat 00 01 02 03 04 &#124; ./myscript > [...]]]></description>
		<wfw:commentRss>http://4thmouse.com/index.php/2008/02/18/converting-hex-to-binary-in-4-languages/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
