1
// (c) 2002 Johan Hoffman & Anders Logg, Chalmers Finite Element Center.
2
// Licensed under the GNU GPL Version 2.
4
// FIXME: GiD output does not seem to work in the way it is described in the manual.
5
// FIXME: Temporary solution works to some extent.
13
void gid_read_header (FILE *fp, int *no_nodes, int *no_cells, CellType *celltype);
14
void gid_read_nodes (FILE *fp, Grid *grid, int no_nodes);
15
void gid_read_cells (FILE *fp, Grid *grid, int no_cells, CellType celltype);
17
void gid_write_header (FILE *fp, DataInfo *datainfo, SysInfo *sysinfo);
18
void gid_write_grid (FILE *fp, Grid *grid);
19
void gid_write_field (FILE *fp, Grid *grid, DataInfo *datainfo, Vector **u, real t, int frame, int no_vectors);