<?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>Coding Recipes &#187; Low Level</title>
	<atom:link href="http://codingrecipes.com/category/low-level/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 02:57:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Implementation of a Vector data structure in C</title>
		<link>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c</link>
		<comments>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c#comments</comments>
		<pubDate>Thu, 23 Jul 2009 22:16:44 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Low Level]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=674</guid>
		<description><![CDATA[I use Python a lot but it&#8217;s very slow in some cases which I then use C because it can be 1,000s X faster than Python. Here is a Vector that I just wrote to use in my new project: vector.h /** * Hamid Alipour */ &#160; #ifndef __VECTORH__ #define __VECTORH__ &#160; #include &#60;stdio.h&#62; #include [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/implementation-of-a-vector-data-structure-in-c/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>C++ needs a higher level standard library</title>
		<link>http://codingrecipes.com/c-needs-a-higher-level-standard-library</link>
		<comments>http://codingrecipes.com/c-needs-a-higher-level-standard-library#comments</comments>
		<pubDate>Fri, 09 Jan 2009 07:27:02 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Low Level]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=558</guid>
		<description><![CDATA[I&#8217;m sure I&#8217;m not the only one who thought about this but I think one of the things that holds me back from using it more is the fact that C++ doesn&#8217;t have a higher level standard library. A while back I was thinking of writing a thread library that works both on Windows (my [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/c-needs-a-higher-level-standard-library/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A binary tree node insertion function</title>
		<link>http://codingrecipes.com/a-binary-tree-node-insertion-function</link>
		<comments>http://codingrecipes.com/a-binary-tree-node-insertion-function#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:16:47 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Low Level]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=322</guid>
		<description><![CDATA[I was working on this for a few days and came up with 3 versions of this function, don&#8217;t even ask for the first one. Here is the second version which is inspired by K&#038;R&#8217;s example: (Just read BTree as Binary Tree) /** First Version **/ void BTree_Store&#40;BTree *t, char *key, void *elem&#41; &#123; t-&#62;root [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/a-binary-tree-node-insertion-function/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

