Exodus 8.24
Loading...
Searching...
No Matches
exodusII_test.h
Go to the documentation of this file.
1/*
2 * Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions
3 * of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
4 * NTESS, the U.S. Government retains certain rights in this software.
5 *
6 * See packages/seacas/LICENSE for details
7 */
8#pragma once
9
10#include "exodusII.h"
11
12#ifdef __cplusplus
13extern "C" {
14#endif /* __cplusplus */
15
16int cCreateEdgeFace(int, char *[]);
17int cReadEdgeFace(int, char *[]);
18
19#ifdef __cplusplus
20}
21#endif /* __cplusplus */
22
23inline int CreateEdgeFace(int argc, char *argv[]) { return cCreateEdgeFace(argc, argv); }
24inline int ReadEdgeFace(int argc, char *argv[]) { return cReadEdgeFace(argc, argv); }
int cReadEdgeFace(int, char *[])
int ReadEdgeFace(int argc, char *argv[])
Definition exodusII_test.h:24
int cCreateEdgeFace(int, char *[])
int CreateEdgeFace(int argc, char *argv[])
Definition exodusII_test.h:23