1 /*****************************************************************************
2  * Copyright (c) 2019 FrontISTR Commons
3  * This software is released under the MIT License, see LICENSE.txt
4  *****************************************************************************/
5 
6 #ifndef HECMW_VIS_MEM_UTIL_H_INCLUDED
7 #define HECMW_VIS_MEM_UTIL_H_INCLUDED
8 
9 #include "hecmw_vis_SF_geom.h"
10 void HECMW_vis_memory_exit(char *var);
11 void HECMW_vis_print_exit(char *var);
12 void mfree(void *pointer);
13 Point *alloc_verts(int num);
14 Polygon *alloc_polygons(int num);
15 
16 #endif /* HECMW_VIS_MEM_UTIL_H_INCLUDED */
17