<?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/"
	>

<channel>
	<title>Roman Högg</title>
	<atom:link href="http://www.romanhoegg.ch/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.romanhoegg.ch</link>
	<description>just a website</description>
	<pubDate>Tue, 30 Dec 2008 07:41:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>handling .ini files</title>
		<link>http://www.romanhoegg.ch/?p=3</link>
		<comments>http://www.romanhoegg.ch/?p=3#comments</comments>
		<pubDate>Tue, 18 Nov 2008 08:26:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.romanhoegg.ch/website/?p=3</guid>
		<description><![CDATA[Two C functions to read from and write to ini-files in C only. (no OS specific API needed!)
Download the source code here: 
Download a sample .ini file: 
Usage example:
int main(void)
{
// an example of how to call the functions...
char *value = readFromINI(INI_FILENAME, "Section2", "Entry2");
printf("returned value from readFromINI: %s\n", value);
free(value);
writeToINI(INI_FILENAME, "Section2", "Entry2", "I've changed this value! Weehee!!!");
getchar [...]]]></description>
			<content:encoded><![CDATA[<p>Two C functions to read from and write to ini-files in C only. (no OS specific API needed!)</p>
<p>Download the source code here: <a href="http://www.romanhoegg.ch/downloadables/inifiles.c"><img src="http://www.romanhoegg.ch/downloadables/download.png" border="0" alt="" /></a><br />
Download a sample .ini file: <a href="http://www.romanhoegg.ch/downloadables/test.ini"><img src="http://www.romanhoegg.ch/downloadables/download.png" border="0" alt="" /></a></p>
<p>Usage example:</p>
<p><code>int main(void)<br />
{<br />
// an example of how to call the functions...<br />
char *value = readFromINI(INI_FILENAME, "Section2", "Entry2");<br />
printf("returned value from readFromINI: %s\n", value);<br />
free(value);<br />
writeToINI(INI_FILENAME, "Section2", "Entry2", "I've changed this value! Weehee!!!");<br />
getchar ();<br />
return 0;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.romanhoegg.ch/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
	</channel>
</rss>
