chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / history.h
1 /*
2  * history.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.1  2008/02/08 15:06:42  james
16  * *** empty log message ***
17  *
18  */
19
20 #ifndef __HISTORY_H__
21 #define __HISTORY_H__
22
23 typedef struct {
24 int valid;
25 time_t t;
26 CRT_CA line[CRT_COLS];
27 } History_ent;
28
29 typedef struct {
30 History_ent *lines;
31 int nlines;
32 int wptr;
33 } History;
34
35 #endif /* __HISTORY_H__ */