New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
axisgroup_interface.f90 in vendors/XIOS/current/src/interface/fortran – NEMO

source: vendors/XIOS/current/src/interface/fortran/axisgroup_interface.f90 @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 866 bytes
Line 
1MODULE AXISGROUP_INTERFACE
2   USE, INTRINSIC :: ISO_C_BINDING
3     
4   INTERFACE ! Ne pas appeler directement/Interface FORTRAN 2003 <-> C99
5     
6 
7      SUBROUTINE cxios_axisgroup_handle_create(ret, idt, idt_size) BIND(C)
8         USE ISO_C_BINDING
9         INTEGER  (kind = C_INTPTR_T)               :: ret
10         CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: idt
11         INTEGER  (kind = C_INT)     , VALUE        :: idt_size
12      END SUBROUTINE cxios_axisgroup_handle_create
13
14      SUBROUTINE cxios_axisgroup_valid_id(ret, idt, idt_size) BIND(C)
15         USE ISO_C_BINDING
16         LOGICAL  (kind = C_BOOL)                   :: ret
17         CHARACTER(kind = C_CHAR)    , DIMENSION(*) :: idt
18         INTEGER  (kind = C_INT)     , VALUE        :: idt_size
19      END SUBROUTINE cxios_axisgroup_valid_id
20
21   END INTERFACE
22     
23END MODULE AXISGROUP_INTERFACE
Note: See TracBrowser for help on using the repository browser.