Difference between revisions of "C Language"

From Bobs Projects
Jump to: navigation, search
 
(5 intermediate revisions by one user not shown)
Line 1: Line 1:
[[Category:Computing]]
+
[[Category:Language]]
  
==Guides==
+
== Guides ==
 
* [http://www.lurklurk.org/linkers/linkers.html Beginner's Guide to Linkers]
 
* [http://www.lurklurk.org/linkers/linkers.html Beginner's Guide to Linkers]
 
* [http://beej.us/guide/ Beej's Guides]
 
* [http://beej.us/guide/ Beej's Guides]
 
* [http://www.linuxjournal.com/article/2333 Linux Network Programming, Part 1] at Linux Journal
 
* [http://www.linuxjournal.com/article/2333 Linux Network Programming, Part 1] at Linux Journal
 +
* https://cr.yp.to/docs/connect.html - Non-blocking BSD socket connections (by D.J. Bernstein)
  
==People==
+
== People ==
 
* [[wikipedia:Dennis Ritchie|Dennis Ritchie]] at Wikipedia
 
* [[wikipedia:Dennis Ritchie|Dennis Ritchie]] at Wikipedia
  
==gcc==
+
== gcc ==
 
* [http://www.gnu.org/software/gnu-c-manual/gnu-c-manual.html GNU C Manual] (html version)
 
* [http://www.gnu.org/software/gnu-c-manual/gnu-c-manual.html GNU C Manual] (html version)
 +
 +
== Tips ==
 +
* [http://stackoverflow.com/questions/1675351/typedef-struct-vs-struct-definitions typedef struct vs struct definitions] from StackOverflow
 +
 +
== Libraries ==
 +
* [http://talloc.samba.org/talloc/doc/html/index.html talloc Documentation] - a hierarchical, reference counted memory pool system with destructors
 +
* [http://tdb.samba.org/ Trivial Database] (or Tridge's Database)
 +
 +
== External links ==
 +
* [https://idea.popcount.org/2012-09-11-concurrent-queue-in-c/ Concurrent queue in C] from idea of the day
 +
* [https://idea.popcount.org/2012-09-12-reinventing-spinlocks/ Reinventing spinlocks] from Marek's ideas

Latest revision as of 14:11, 24 October 2022


Contents

Guides

People

gcc

Tips

Libraries

External links