aboutsummaryrefslogtreecommitdiffstats
path: root/src/history.h
blob: 8ca80b2fc9b838e3fccdae405533f29e39c60a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* 
 * history.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/* 
 * $Id$
 */

/* 
 * $Log$
 * Revision 1.6  2008/03/07 12:37:04  james
 * *** empty log message ***
 *
 * Revision 1.5  2008/03/03 06:04:42  james
 * *** empty log message ***
 *
 * Revision 1.4  2008/03/02 10:37:56  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/02/13 16:57:29  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/12 22:36:46  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/08 15:06:42  james
 * *** empty log message ***
 *
 */

#ifndef __HISTORY_H__
#define __HISTORY_H__

typedef struct
{
  int valid;
  time_t t;
  CRT_CA line[CRT_COLS];
} History_ent;

typedef struct
{
  History_ent *lines;
  int nlines;
  int wptr;
} History;

#define HISTORY_INC(h,a) do { (a)++; if ((a)==((h)->nlines)) { (a)=0; }; } while (0)

#endif /* __HISTORY_H__ */