#ifndef PIECES_H #define PIECES_H struct piece { int h; int w; char* blocks; }; struct piece* randpiece(); #endif