SURFEX v8.1
General documentation of Surfex
groksize.c
Go to the documentation of this file.
1 
2 /*
3  * This routine is used to find out the size(in bytes) of a fortran entity.
4  * Example :
5  * TYPE(TOTO) :: T(2)
6  * CALL GROKSIZE (KSIZE, T(1), T(2))
7  */
8 void groksize_ (int * ksize, const char * c1, const char * c2)
9 {
10  *ksize = c1 - c2;
11 }
real(kind=jprb), parameter c1
real(kind=jprb), parameter c2
void groksize_(int *ksize, const char *c1, const char *c2)
Definition: groksize.c:8