summaryrefslogtreecommitdiff
path: root/src/IO/FortranBindingsIO.c
blob: 5002308ff1180eac677b4c091dbd12de808c0fa2 (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
30
31
32
33
 /*@@
   @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"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(IO_FortranBindingsIO_c)

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);
}