Statistics
| Branch: | Revision:

root / synthbench / euroben-ports / base / C-MPI / mod2f / .svn / text-base / cp_arr2d.c.svn-base @ 0:839f52ef7657

History | View | Annotate | Download (330 Bytes)

1
void cp_arr2d( int m, int n, double **ar1, double **ar2 )
2
// ---------------------------------------------------------------------
3
{
4
   int i, j;
5
// ---------------------------------------------------------------------
6
   for( i = 0; i < m; i++ ) {
7
      for( j = 0; j < n; j++ ) {
8
          ar2[i][j] = ar1[i][j];
9
      }
10
   }
11
}