$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.function == void |?FUNCTION_NAME| ( <+argument list+> ) { return <+return value+>; } // ----- end of function |FUNCTION_NAME| ----- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.function-static == static void |?FUNCTION_NAME| ( <+argument list+> ) { return <+return value+>; } // ----- end of static function |FUNCTION_NAME| ----- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.main == #include int main ( int argc, char *argv[] ) { return EXIT_SUCCESS; } // ---------- end of function main ---------- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.enum == enum |?ENUM_NAME| { }; // ---------- end of enum |ENUM_NAME| ---------- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.struct == struct |?STRUCT_NAME| { }; // ---------- end of struct |STRUCT_NAME| ---------- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.union == union |?UNION_NAME| { }; // ---------- end of union |UNION_NAME| ---------- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.printf == insert == printf ( "\n" ); == idioms.scanf == insert == scanf ( "", & ); $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.calloc == |?POINTER| = calloc ( (size_t)(<+COUNT+>), sizeof(<+TYPE+>) ); if ( |POINTER|==NULL ) { fprintf ( stderr, "\ndynamic memory allocation failed\n" ); exit (EXIT_FAILURE); } free (|POINTER|); |POINTER| = NULL; $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.malloc == |?POINTER| = malloc ( sizeof(<+TYPE+>) ); if ( |POINTER|==NULL ) { fprintf ( stderr, "\ndynamic memory allocation failed\n" ); exit (EXIT_FAILURE); } free (|POINTER|); |POINTER| = NULL; $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.realloc == |?POINTER| = realloc ( |POINTER|, sizeof(<+TYPE+>) ); if ( |POINTER|==NULL ) { fprintf ( stderr, "\ndynamic memory reallocation failed\n" ); exit (EXIT_FAILURE); } $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.sizeof == insert == sizeof() == idioms.assert == insert == assert(); $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.open-input-file == FILE *|?FILEPOINTER|; // input-file pointer char *|FILEPOINTER|_file_name = ""; // input-file name |FILEPOINTER| = fopen( |FILEPOINTER|_file_name, "r" ); if ( |FILEPOINTER| == NULL ) { fprintf ( stderr, "couldn't open file '%s'; %s\n", |FILEPOINTER|_file_name, strerror(errno) ); exit (EXIT_FAILURE); } {-continue here-} if( fclose(|FILEPOINTER|) == EOF ) { // close input file fprintf ( stderr, "couldn't close file '%s'; %s\n", |FILEPOINTER|_file_name, strerror(errno) ); exit (EXIT_FAILURE); } $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.open-output-file == FILE *|?FILEPOINTER|; // output-file pointer char *|FILEPOINTER|_file_name = ""; // output-file name |FILEPOINTER| = fopen( |FILEPOINTER|_file_name, "w" ); if ( |FILEPOINTER| == NULL ) { fprintf ( stderr, "couldn't open file '%s'; %s\n", |FILEPOINTER|_file_name, strerror(errno) ); exit (EXIT_FAILURE); } {-continue here-} if( fclose(|FILEPOINTER|) == EOF ) { // close output file fprintf ( stderr, "couldn't close file '%s'; %s\n", |FILEPOINTER|_file_name, strerror(errno) ); exit (EXIT_FAILURE); } $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% == idioms.fprintf == insert == fprintf ( |?FILEPOINTER|, "\n", ); == idioms.fscanf == insert == fscanf ( |?FILEPOINTER|, "", & ); $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%