1 /*
2  * Copyright(C) 1999-2020 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 /*****************************************************************************
9  *
10  * exgeat - ex_get_elem_attr_names
11  *
12  * entry conditions -
13  *   input parameters:
14  *       int     exoid                   exodus file id
15  *       int     elem_blk_id             element block id
16  *
17  * exit conditions -
18  *       char*   names[]                 ptr array of attribute names
19  *
20  *
21  *****************************************************************************/
22 
23 #include "exodusII.h" // for ex_get_attr_names, etc
24 
25 /*!
26  * reads the attribute names for an element block
27  * \deprecated Use ex_get_attr_names()(exoid, EX_ELEM_BLOCK, elem_blk_id, names)
28  * instead
29  */
ex_get_elem_attr_names(int exoid,ex_entity_id elem_blk_id,char ** names)30 int ex_get_elem_attr_names(int exoid, ex_entity_id elem_blk_id, char **names)
31 {
32   return ex_get_attr_names(exoid, EX_ELEM_BLOCK, elem_blk_id, names);
33 }
34