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.2  2008/02/12 22:36:46  james
16  * *** empty log message ***
17  *
18  * Revision 1.1  2008/02/08 15:06:42  james
19  * *** empty log message ***
20  *
21  */
22
23 #ifndef __HISTORY_H__
24 #define __HISTORY_H__
25
26 typedef struct
27 {
28   int valid;
29   time_t t;
30   CRT_CA line[CRT_COLS];
31 } History_ent;
32
33 typedef struct
34 {
35   History_ent *lines;
36   int nlines;
37   int wptr;
38 } History;
39
40 #endif /* __HISTORY_H__ */