Tools
solid.txt
Associated article: Building Solid Code
Tags: Tools
Published source code example accompanying the article by Wes Faler in which he describes the development process his company uses to produce well-structured, clean source code.
Building Solid Code
by Wes Faler
Example 1:
void log_prtf(const char *outdata)
{
FILE *log_fp = fopen("log.log","at");
if(log_fp) {
char buffer[40];
time_t t;
time(&t);
strcpy(buffer,ctime(&t));
#...


