summaryrefslogtreecommitdiff
path: root/src/text.h
blob: 22ab889615b7ced571f6c35c0d7683371979ea1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _DWXINFO_TEXT_H_
#define _DWXINFO_TEXT_H_

#include <stdio.h>
#include <time.h>

#define TEXT_SIZE 512

struct text * text_new();
void text_free(struct text *);

void text_update(struct text *);
const char * text_get_val(struct text *);

#endif