10 lines
119 B
C
10 lines
119 B
C
|
/*
|
||
|
* This file defines all data structures used by i3
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
typedef struct Font {
|
||
|
char *name;
|
||
|
int height;
|
||
|
} Font;
|