I think title says what I need. I know we can use “asd” function to do this, but for some reasons I need to do the allocation in Fortran (i.e. in subroutine “asd_”). Here is the C code:
#include <stdio.h>
void asd(float **c) {
*c = (float *) malloc (2*sizeof(float));
**c =123;
*(*c+1)=1234;
}
void asd_(float **c);
main () {
float *c;
asd_(&c);
// asd(&c); would do the job perfectly
printf("%f %f \n",c[0],c[1]);
return 0;
}
And here is the Fortran code:
subroutine asd(c)
implicit none
real, pointer, allocatable ::c(:)
print *, associated(c)
if(.not. associated(c)) allocate(c(2))
end subroutine
This randomly gives segmentation fault. Any help would be appreciated.
Here is also another solution, if you want to use Fortran intrinsic types. This was my case, since I needed to call routines from an external library, using the pre-specified data types. This is basically done with a wrapper Fortran subroutine. Here is the C code:
And here is the wrapper:
And the Fortran codes:
And the header file “h.h”:
Note, this way all the objects are opaque in the C.