summary refs log tree commit diff
path: root/con.h
blob: ab2f16a9610bbb76fb7a35e0f93dec681cac33a6 (plain)
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