REMORA
Regional Modeling of Oceans Refined Adaptively
Loading...
Searching...
No Matches
REMORA_funwave_Fortran_Interface.H
Go to the documentation of this file.
1#ifndef FUNWAVE_FORTRAN_INTERFACE_H
2#define FUNWAVE_FORTRAN_INTERFACE_H
3
4#include <stdbool.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10/**
11 * C interface to the FUNWAVE Fortran advance
12 *
13 * @note: All array dimensions must match between C++ and Fortran calls.
14 * @note: Arrays must be allocated in C++ before passing to this routine.
15 */
16void funwave_advance_c(double* salt, int ims, int ime, int jms, int jme, int kms, int kme);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif // FUNWAVE_FORTRAN_INTERFACE_H
void funwave_advance_c(double *salt, int ims, int ime, int jms, int jme, int kms, int kme)