From fd2001cd614dfa0d55ec820b7c358a1795d3ea27 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Tue, 14 Dec 2021 11:42:41 -0500 Subject: Simplify vim configuration --- .../codesnippets/print_double_array.c.noindent | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 dot_vim/c-support/codesnippets/print_double_array.c.noindent (limited to 'dot_vim/c-support/codesnippets/print_double_array.c.noindent') diff --git a/dot_vim/c-support/codesnippets/print_double_array.c.noindent b/dot_vim/c-support/codesnippets/print_double_array.c.noindent deleted file mode 100644 index 6ced53a..0000000 --- a/dot_vim/c-support/codesnippets/print_double_array.c.noindent +++ /dev/null @@ -1,30 +0,0 @@ - -/* - * === FUNCTION ====================================================================== - * Name: print_double_array - * Description: Print a double-array with one dimension. - * Use - * print_int_array( *matrix, n1*n2, n2, "matrix" ); - * for - * double matrix[n1][n2]; - * ===================================================================================== - */ -static void -print_double_array ( double array[], /* array to print */ - int n, /* number of elements to print */ - int nrow, /* number of elements per row */ - char *arrayname /* array name */ - ) -{ - int i; - printf ("\n\n array \"%s\", length %d\n", arrayname, n ); - for ( i=0; i