aboutsummaryrefslogtreecommitdiffstats
path: root/src/history.c
blob: b8637aae63380be2143753a1b52eb5295a512ef3 (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
55
56
57
58
59
60
61
/*
 * history.c:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

static char rcsid[] = "$Id$";

/*
 * $Log$
 * 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 ***
 *
 */

#include "project.h"

History *
history_new (int n)
{
  History *ret;

  ret = (History *) malloc (sizeof (History));
  ret->lines = malloc (n * sizeof (History_ent));
  memset (ret->lines, 0, n * sizeof (History_ent));

  ret->wptr = 0;
  ret->nlines = n;

  return ret;
}

void
history_free (History * h)
{
  if (!h)
    return;
  if (h->lines)
    free (h->lines);
  free (h);
}


void
history_add (History * h, CRT_CA * c)
{
  if (!h)
    return;

  memcpy (h->lines[h->wptr].line, c, sizeof (CRT_CA) * CRT_COLS);
  h->wptr++;

  if (h->wptr == h->nlines)
    h->wptr = 0;

}