aboutsummaryrefslogtreecommitdiff
path: root/.vim/c-support/templates/cpp.idioms.template
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-12-13 16:55:42 -0500
committerRyan Kavanagh <rak@rak.ac>2021-12-13 16:58:10 -0500
commite5dfb045b994e1ab8fef9ef5d3f02ce20ea6b685 (patch)
treeba74287d80e46c70dab8c4311a1dc933fbfbdea1 /.vim/c-support/templates/cpp.idioms.template
parentfix pager again (diff)
many more renames
Diffstat (limited to '.vim/c-support/templates/cpp.idioms.template')
-rw-r--r--.vim/c-support/templates/cpp.idioms.template98
1 files changed, 0 insertions, 98 deletions
diff --git a/.vim/c-support/templates/cpp.idioms.template b/.vim/c-support/templates/cpp.idioms.template
deleted file mode 100644
index febc375..0000000
--- a/.vim/c-support/templates/cpp.idioms.template
+++ /dev/null
@@ -1,98 +0,0 @@
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.function ==
-void<CURSOR>
-|?FUNCTION_NAME| ( )
-{
-<SPLIT> return ;
-} // ----- end of function |FUNCTION_NAME| -----
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.function-static ==
-static void<CURSOR>
-|?FUNCTION_NAME| ( )
-{
-<SPLIT> return ;
-} // ----- end of static function |FUNCTION_NAME| -----
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.main ==
-int
-main ( int argc, char *argv[] )
-{<CURSOR>
-<SPLIT> return EXIT_SUCCESS;
-} // ---------- end of function main ----------
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.enum ==
-enum |?ENUM_NAME| {<CURSOR>
-<SPLIT>}; // ---------- end of enum |ENUM_NAME| ----------
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.struct ==
-struct |?STRUCT_NAME| {<CURSOR>
-<SPLIT>}; // ---------- end of struct |STRUCT_NAME| ----------
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.union ==
-union |?UNION_NAME| {<CURSOR>
-<SPLIT>}; // ---------- end of union |UNION_NAME| ----------
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.calloc ==
-|?POINTER| = (<CURSOR>TYPE*)calloc ( (size_t)(COUNT), sizeof(TYPE) );
-if ( |POINTER|==NULL ) {
- fprintf ( stderr, "\ndynamic memory allocation failed\n" );
- exit (EXIT_FAILURE);
-}
-
-free (|POINTER|);
-
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.malloc ==
-|?POINTER| = (<CURSOR>TYPE*)malloc ( sizeof(TYPE) );
-if ( |POINTER|==NULL ) {
- fprintf ( stderr, "\ndynamic memory allocation failed\n" );
- exit (EXIT_FAILURE);
-}
-
-free (|POINTER|);
-
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.open-input-file ==
-FILE *|?FILEPOINTER|; // input-file pointer
-char *|FILEPOINTER|_file_name = "<CURSOR>"; // 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);
-}
-
-
-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 = "<CURSOR>"; // 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);
-}
-
-
-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 ==
-fprintf ( |?FILEPOINTER|, "<CURSOR>\n", );
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-== idioms.fscanf ==
-fscanf ( |?FILEPOINTER|, "<CURSOR>", & );
-$%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%