<?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>library | Learn C Games Programming Blog</title>
	<atom:link href="https://learncgames.com/tag/library/feed/" rel="self" type="application/rss+xml" />
	<link>https://learncgames.com</link>
	<description>A blog about C, programming games and my ebook(s).</description>
	<lastBuildDate>Wed, 16 Dec 2020 10:22:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://learncgames.com/wp-content/uploads/2020/03/cropped-favicon-32x32.png</url>
	<title>library | Learn C Games Programming Blog</title>
	<link>https://learncgames.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">181446779</site>	<item>
		<title>The C template library</title>
		<link>https://learncgames.com/the-c-template-library/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-c-template-library</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Fri, 18 Dec 2020 00:00:40 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[template]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=2088</guid>

					<description><![CDATA[<p>C of course doesn&#8217;t have generics or templates like C++ does, but I came across Gustav Lou&#8217;s C Template library this morning. It provides C equivalents to the following C++ template libraries. Each is done as a header file that you include. deq.h -&#62; std::deque lst.h -&#62; std::list pqu.h -&#62; std::priority_queue que.h -&#62; std::queue set.h [&#8230;]</p>
The post <a href="https://learncgames.com/the-c-template-library/">The C template library</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:316,&quot;href&quot;:&quot;https:\/\/github.com\/glouw\/ctl&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20251225222241\/https:\/\/github.com\/glouw\/ctl&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 13:50:10&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-14 05:12:55&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 02:11:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-27 11:01:15&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-04 12:25:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-09 04:33:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-18 08:09:13&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-24 20:38:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-28 08:20:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-05 21:57:45&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-13 12:31:40&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-20 11:42:30&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-20 11:42:30&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<p><img fetchpriority="high" decoding="async" class="alignleft size-medium wp-image-2089" src="https://learncgames.com/wp-content/uploads/2020/12/texture-3319946_640-300x169.jpg" alt="Texture template" width="300" height="169" srcset="https://learncgames.com/wp-content/uploads/2020/12/texture-3319946_640-300x169.jpg 300w, https://learncgames.com/wp-content/uploads/2020/12/texture-3319946_640.jpg 640w" sizes="(max-width: 300px) 100vw, 300px" />C of course doesn&#8217;t have generics or templates like C++ does, but I came across Gustav Lou&#8217;s <a title="List to C template library on GitHub" href="https://github.com/glouw/ctl" target="_blank" rel="nofollow noopener">C Template library</a> this morning. It provides C equivalents to the following C++ template libraries. Each is done as a header file that you include.</p>
<pre><code class="" data-line="">deq.h -&gt; std::deque
lst.h -&gt; std::list
pqu.h -&gt; std::priority_queue
que.h -&gt; std::queue
set.h -&gt; std::set
stk.h -&gt; std::stack
str.h -&gt; std::string
vec.h -&gt; std::vector
 </code></pre>
<p>The page on GitHub shows how to use libraries with an example of vector. The <strong>string</strong> equivalent library str.h would be an interesting one to see just how much of C++ string is supported.  C would still never be my language of choice for anything text heavy but if this is better than strcpy, strcat etc. I&#8217;ll happily use it.  Likewise <strong>list</strong> and <strong>vector</strong>. From memory C++ std::array is just a wrapper around the C standard array!</p>The post <a href="https://learncgames.com/the-c-template-library/">The C template library</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2088</post-id>	</item>
		<item>
		<title>Single file libraries</title>
		<link>https://learncgames.com/single-file-libraries/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=single-file-libraries</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Thu, 29 Oct 2020 00:00:25 +0000</pubDate>
				<category><![CDATA[C]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[single-file]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=1684</guid>

					<description><![CDATA[<p>Most days I scan the web for relevant or interesting stuff and today I found a real treasure. A website where they have curated a list of C and C++ single file libraries. That is libraries that are not multiple files but mostly one. I say mostly because there are a few with 2 or [&#8230;]</p>
The post <a href="https://learncgames.com/single-file-libraries/">Single file libraries</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:422,&quot;href&quot;:&quot;https:\/\/unsplash.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260206065624\/https:\/\/unsplash.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 14:53:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:23:29&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-13 21:45:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-17 13:33:40&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-21 05:20:04&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-02-24 21:07:55&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-02-28 02:02:10&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-03 12:48:19&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-07 04:40:31&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-10 08:29:42&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-13 20:21:23&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-17 04:11:32&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-20 19:57:46&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-24 03:46:53&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-27 11:33:50&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-03-30 19:21:04&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-03 03:10:27&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-06 11:00:22&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-09 16:02:12&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-13 02:40:30&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-16 07:18:28&quot;,&quot;http_code&quot;:503},{&quot;date&quot;:&quot;2026-04-19 18:22:20&quot;,&quot;http_code&quot;:401},{&quot;date&quot;:&quot;2026-04-23 02:13:32&quot;,&quot;http_code&quot;:401}],&quot;broken&quot;:true,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-23 02:13:32&quot;,&quot;http_code&quot;:401},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:423,&quot;href&quot;:&quot;https:\/\/github.com\/nothings\/single_file_libs&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20250112111125\/https:\/\/github.com\/nothings\/single_file_libs&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 14:53:07&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:23:31&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-14 05:12:59&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-17 15:44:52&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 02:11:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-27 11:01:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-04 12:25:22&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-07 16:33:22&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-10 22:36:39&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-14 09:32:55&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-26 02:10:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-30 20:37:46&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-05 12:01:17&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 16:02:12&quot;,&quot;http_code&quot;:404},{&quot;date&quot;:&quot;2026-04-15 23:39:18&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-20 08:23:46&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-23 19:17:38&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-23 19:17:38&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<figure id="attachment_1685" aria-describedby="caption-attachment-1685" style="width: 300px" class="wp-caption alignleft"><img decoding="async" class="size-medium wp-image-1685" src="https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-300x200.jpg" alt="open book lot" width="300" height="200" srcset="https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-300x200.jpg 300w, https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-1024x683.jpg 1024w, https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-768x512.jpg 768w, https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-1536x1024.jpg 1536w, https://learncgames.com/wp-content/uploads/2020/10/oaqk7qqnh_c-2048x1365.jpg 2048w" sizes="(max-width: 300px) 100vw, 300px" /><figcaption id="caption-attachment-1685" class="wp-caption-text">Library image from <a href="https://unsplash.com">Unsplash.com</a></figcaption></figure>
<p>Most days I scan the web for relevant or interesting stuff and today I found a real treasure. A website where they have curated a list of <a title="Link to single file libs on GitHub" href="https://github.com/nothings/single_file_libs" target="_blank" rel="noopener noreferrer">C and C++ single file libraries</a>. That is libraries that are not multiple files but mostly one. I say mostly because there are a few with 2 or 3 files.</p>
<p>The bulk are in C++ but there are a large number of C/C++ and quite a number of C. All have their licensing; these are open source but licences vary a bit.</p>
<p>It&#8217;s worth a trawl through the List. For instance there&#8217;s an <em>interpreter for a BASIC dialect scripting language</em>,</p>The post <a href="https://learncgames.com/single-file-libraries/">Single file libraries</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1684</post-id>	</item>
		<item>
		<title>A free C Book &#8211; &#8220;C Programming Notes for Professionals&#8221;</title>
		<link>https://learncgames.com/a-free-c-book-c-programming-notes-for-professionals/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-free-c-book-c-programming-notes-for-professionals</link>
		
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Sat, 08 Aug 2020 23:00:15 +0000</pubDate>
				<category><![CDATA[Ebook]]></category>
		<category><![CDATA[free ebooks]]></category>
		<category><![CDATA[library]]></category>
		<guid isPermaLink="false">https://learncgames.com/?p=1136</guid>

					<description><![CDATA[<p>This has nothing to do with my ebook and was produced entirely by the Goalkicker.com project which produces free and very professional looking ebooks, I came across it just a few days ago. The C Programming Note for Professionals is currently 327 pages long, a 2.4 MB download. It&#8217;s nicely laid out and professionally done. [&#8230;]</p>
The post <a href="https://learncgames.com/a-free-c-book-c-programming-notes-for-professionals/">A free C Book – “C Programming Notes for Professionals”</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></description>
										<content:encoded><![CDATA[<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:582,&quot;href&quot;:&quot;https:\/\/books.goalkicker.com\/CBook&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20251208040438\/https:\/\/books.goalkicker.com\/CBook\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 16:29:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:50:10&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-14 17:39:52&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-20 18:21:30&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 02:11:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-28 19:08:31&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-04 12:25:22&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-07 16:38:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-13 08:15:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-18 03:47:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-24 04:42:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-27 13:34:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-05 21:51:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 09:50:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-13 08:22:15&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-19 12:07:34&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-19 12:07:34&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:583,&quot;href&quot;:&quot;https:\/\/books.goalkicker.com&quot;,&quot;archived_href&quot;:&quot;http:\/\/web-wp.archive.org\/web\/20260131115921\/https:\/\/books.goalkicker.com\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2026-02-06 16:29:27&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-10 10:50:11&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-14 17:39:51&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-20 18:21:28&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 02:11:55&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-28 19:08:30&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-04 12:25:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-07 16:38:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-13 08:15:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-18 03:47:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-24 04:42:38&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-27 13:34:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-05 21:51:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-11 19:01:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-19 12:07:37&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-04-19 12:07:37&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]'></div>
<p><img decoding="async" class="alignleft size-full wp-image-1137" src="https://learncgames.com/wp-content/uploads/2020/08/cNotes-cover.png" alt="C Notes for Professionals Book cover" width="350" height="495" srcset="https://learncgames.com/wp-content/uploads/2020/08/cNotes-cover.png 350w, https://learncgames.com/wp-content/uploads/2020/08/cNotes-cover-212x300.png 212w" sizes="(max-width: 350px) 100vw, 350px" />This has nothing to do with my ebook and was produced entirely by the Goalkicker.com project which produces free and very professional looking ebooks, I came across it just a few days ago.</p>
<p>The <a title="Link to Free C Programmin Notes EBook" href="https://books.goalkicker.com/CBook/" target="_blank" rel="noopener noreferrer">C Programming Note for Professionals</a> is currently 327 pages long, a 2.4 MB download. It&#8217;s nicely laid out and professionally done. I&#8217;ve only flicked through it but it looks an excellent piece of work with 63 chapters currently. You can leave your email address and they&#8217;ll notify you of any changes.</p>
<p>There are almost <a title="Link to free Ebooks collection" href="https://books.goalkicker.com/" target="_blank" rel="noopener noreferrer">50 ebooks</a> in total covering topics like Android, .NET, Xamarion Forms, Perl, PHP, MySQL, PostgreSQL and may other topics. This is an excellent library.  I don&#8217;t know who is behind this project but they deserve to be bought a lot of coffees&#8230;</p>The post <a href="https://learncgames.com/a-free-c-book-c-programming-notes-for-professionals/">A free C Book – “C Programming Notes for Professionals”</a> first appeared on <a href="https://learncgames.com">Learn C Games Programming Blog</a>.]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1136</post-id>	</item>
	</channel>
</rss>
