summaryrefslogtreecommitdiff
path: root/src/IO/FortranBindingsIO.c
blob: 1fe6aae7a93280a012219302cf05f9cd0fe93410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 /*@@
   @file      FortranBindingsIO.c
   @date      Thu Feb  18 14:27:18 1999
   @author    Gabrielle Allen
   @desc 
   Fortran bindings for the IO functions
   @enddesc 
 @@*/ 

#include <stdlib.h>
#include "cctk_Flesh.h"
#include "cctk_FortranString.h"
#include "cctk_IO.h"
#include "cctk_IOMethods.h"

void CCTK_FCALL CCTK_FNAME(CCTK_OutputGH)
     (int *istat,cGH *GH)
{
  *istat = CCTK_OutputGH(GH);
}

void CCTK_FCALL CCTK_FNAME(CCTK_RegisterIOMethod)
     (int *handle, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name);
  *handle = CCTK_RegisterIOMethod(name);
  free(name);
}