#ifndef FACE_H #define FACE_H #include "array.h" struct face { struct array *a; int sx, sy; int z_ref; }; struct face *read_face(const char *name); #endif /* FACE_H */