1 2 3 4 5 6 7 8 9 10 11 12
#ifndef CON_H #define CON_H struct consz { unsigned rows, cols; }; struct consz con_size(void); unsigned con_rows(void); unsigned con_cols(void); #endif