Living in the Objective-C land for a while, I'm starting to "spread my wings" a bit with standard C - and am building a C library to encapsulate some particular functionality we have that needs to be brought over to Android / etc.

After using .NET for several years, I came across the ".NET Framework Design Guidelines" reference book, which I've found falls in line with what I had already become familiar with - but hadn't seen written down anywhere. It's a fairly comprehensive book covering topics from basic naming conventions to exception throwing.

I've searched, but haven't found anything nearly as comprehensive in it's coverage and cohesion for C as this reference book is for .NET.

I'd really like the guidance of someone who has been doing this longer than I have - and, while I feel like I'm on a fairly stable foundation as far as my comprehension of C goes, I find myself wondering if others would have a hard time with some of my style and organizational approaches.

Topics I'm looking to have addressed:

  • Use of prefixes for typedef'd structs in a library (capital letters like NextStep "NSObject", "NSMutableArray" or "Namespace_" approach "MyLib_StructName"?)

  • Organization of public and "private" header files.

  • Function naming (Mutators, "Property" accessors, etc) AKA "void StructNameSetProperty(int value)" and "int StructNameGetProperty(void)" ?

etc.

NOTE: I'm looking for a list of published, comprehensive, reference materials (books, etc) - not opinions from the S.O. community about this topic.

If the question has already been asked, I couldn't find it. If you could please point me in the right direction, I'd appreciate it.

Thank you.

link|improve this question

3  
Wait, are you asking for standard C coding style? Ain't no such thing. – Jonathan Grynspan Aug 30 '11 at 18:05
2  
I second this. There is no such thing. You'll learn the hard way, like everyone, by programming that 1) hungarian notataion (the "system" version) sucks, 2) static variables / functions make for perfectly good "private" stuff, 3) namespaces = prefixes 4) functions should be short (height < one screen) and names must be descriptive (~ no comments) 5) goto is not evil 6) macros are not evil 7) coding straightforwardly is the only way to maintainability. – Alexandre C. Aug 30 '11 at 18:17
1  
@Alexandre C. Totally understood/agreed - my concern is more about "If I give this to another C developer will he/she look at it and say 'The public API here looks like others I've used in the past' or will they say 'What the h*ll is going on here? Why does this function, which operates on this other struct, not start with the same name as the struct?'" I understand C is used for so many different things that the conventions that work for me may not work for someone building an OS - but I still feel like what I'm doing is "standard enough" that there should be existing wisdom. – Steve Aug 30 '11 at 18:24
@Steve: Unfortunately, not everyone agrees on what should be the convention for writing C interfaces. I find a lot of widely used libraries a pain to use (Win32 is a perfect example). You learn a lot about how to write C interfaces when you use actual well written libraries. A good model to draw inspiration from is the pthreads library, the key here is consistency of the naming scheme and predictability of the interface. – Alexandre C. Aug 30 '11 at 18:42
@Steve: For instance see eli.thegreenplace.net/2010/04/05/… – Alexandre C. Aug 30 '11 at 19:00
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted

There is no single "standard" - many standard style guidelines exist. For example, the Wikipedia page on Indent Style actually mentions, by name, many different common style guidelines for C. This is different from the .NET framework, where a single body (Microsoft) has been able to somewhat dictate a "common style", since it's effectively created and controlled by one organization.

A good reference is C Style - it discusses many of the common guidelines, as well as advantages and disadvantages to the different options.

link|improve this answer
Thanks for the link to "C Style" that's just the kind of thing I'm looking for. – Steve Aug 30 '11 at 18:19
feedback

There are many ways to write good C, and many ways to write bad C code. Coding conventions are best learnt through experience, inspiring yourself from libraries you find easy to use, and staying away from those you don't like.

A good starting point for study is the POSIX Threads library, which is a perfect example of a well written C library:

  1. The naming scheme is consistent: pthread_ prefix as a namespace, create, init, destroy as suffixes suggest constructors and destructors, etc.
  2. The way arguments are passed is predictable: this minimizes the time you spend looking up the documentation
  3. Types are opaque, and manipulated via accessors: this is the C way of doing encapsulation.

You can read a dithyrambic blog post about pthreads and C coding style there. I think there is something to read about pthreads related to orthogonality of design components in The Art of Unix Programming. The key when coding in C (even more than in any language) is to stay very simple and to strive for orthogonality of features, since the language doesn't lend well to complex APIs.

Other quite good libraries you can learn from are GLib and GSL.

link|improve this answer
Thank you for the insightful comments and the links to the pthreads library. – Steve Aug 30 '11 at 19:18
@Steve: you're welcome. – Alexandre C. Aug 30 '11 at 19:26
feedback

There is no "one true way", but that is not surprising. All programming languages, though most have a commonly accepted repertoire of coding guidelines, still have areas where individuals disagree on very specific details.

But no doubt, C is one of the languages where a wide variety of "coding standards" is in use - it almost seems as if it changes from open source project to open source project.

Some examples of elements that are different for each standard:

  • camelCase vs. CamelCase vs camel_case
  • Placement of '{}'
  • "Namespacing" functions - one unique prefix such as gcry_ or OSSL_ - or several prefixes dependent on the topic such as int_/INT_, client_/CLIENT_ etc. ?
  • naming of typedefs (IMHO this is where it varies wildly): template_t *, Template *, TEMPLATE *, template *, t_template*, ...
  • placement of the return type of a function

This

 int
 my_func()

vs.

 int my_func()
  • Writing identifiers explicitly or abbreviated, e.g. do_extensive_calculation vs. do_ext_calc
  • ...

It's really personal taste regarding what you choose for your own projects. If you join an existing project I would recommend adopting the style that is already used throughout the project. Many open source projects include a file or web site describing their own coding standards, more or less strict in their requirements. Examples for strict guidelines with reasoning about their choices (these are good resources, you'll either love it or hate it, but in any case you will make better choices on your own):

link|improve this answer
Thanks for your comments, and your link to the GNU Coding Standards! – Steve Aug 30 '11 at 18:34
You're welcome - then I hope you enjoy the Linux kernel link, too :) – emboss Aug 30 '11 at 18:48
feedback

Your Answer

 
or
required, but never shown

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