vote up 4 vote down star
2

Can you recommend me what should I read/learn in order to make a well organized code in C?

One of the things I want to learn is the principles of splitting project in .h and .c files, what goes where and why, variable naming, when to use global variables ...

I am interested in books and articles that deal with this specific problem.

flag

29% accept rate

3 Answers

vote up 3 vote down

A good book that covers a lot of this (for both C and C++) is Large Scale C++ Software Design, by John Lakos:

Also, a good rule of thumb to remember is "Never do anything that allocates memory in a header file"

link|flag
"Never do anything that allocates memory in a header file"---I like that. Succinct and a pearl of wisdom. – dmckee Jan 28 at 19:57
vote up 1 vote down

Specific to unix (and not to c, natch), but none the less:

Recursive Make Considered Harmful

With the build structure described, you can afford to use a lot of files. So each logical unit gets a header and a source file.

link|flag
vote up 1 vote down

I think the best educational reading you're going to get on this subject, is reading something like the Linux Kernel source. It's got a good source layout, and is basically the standard large C project. Here is a guide for how source files should be put together for BSD source, as well.

Seriously, just start reading Kernel source and get a feel for how everything is put together. It's a very well planned project, obviously.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.