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.