#include "../../routines/machine.h"Include dependency graph for ex15c.c:

Go to the source code of this file.
Functions | |
| int F2C() | ext15ca (double *ar, int *m, int *n) |
| int F2C() | ext15cb (double *ar1, double *ar2, int *m, int *n) |
| int F2C() | ext15cc (int *ar, int *m, int *n) |
| int F2C() | ext15cd (int *ar1, int *ar2, int *m, int *n) |
| int F2C() | ext15ce (int **ar1, int *m, int *n, int *err) |
Definition at line 65 of file ex15c.c.
References err, i, m, malloc(), n, and sciprint().
00068 { 00069 int i; 00070 *n=1; 00071 *m=10; 00072 *ar1 = (int *) malloc((unsigned) (*m)*sizeof(int)); 00073 if ( *ar1 == (int*) 0) 00074 { 00075 *err=1; 00076 sciprint("No more space\r\n"); 00077 return; 00078 } 00079 *err=0; 00080 for ( i = 0; i < *m*(*n) ; i++) 00081 (*ar1)[i] = i; 00082 }
Here is the call graph for this function:

1.5.1