27 lines
257 B
C
27 lines
257 B
C
#ifndef TEXT_H
|
|
#define TEXT_H
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
struct text {
|
|
char *text;
|
|
t_color color;
|
|
int ptsize;
|
|
};
|
|
|
|
|
|
struct text_cache_item {
|
|
char *key;
|
|
struct text *value;
|
|
};
|
|
|
|
|
|
struct text_cache {
|
|
struct text_cache_item *hash;
|
|
};
|
|
|
|
|
|
#endif
|