xref: /phasta/phSolver/common/phIO.h (revision d1293ce908feb078a7fc65b010fc9344f582bfd9)
1 #ifndef PHSOLVER_PHIO_H
2 #define PHSOLVER_PHIO_H
3 
4 #include <FCMangle.h>
5 
6 #define phio_readheader FortranCInterface_GLOBAL_(phio_readheader, PHIO_READHEADER)
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11   void phio_readheader(
12       int* fileDescriptor,
13       const  char keyphrase[],
14       void* valueArray,
15       int*  nItems,
16       const char  datatype[],
17       const char  iotype[] );
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif
23 
24