-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.h
34 lines (26 loc) · 809 Bytes
/
history.h
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
/* $Id: history.h,v 1.5 2002/01/26 17:24:01 ukai Exp $ */
#ifndef HISTORY_H
#define HISTORY_H
#include "textlist.h"
#include "hash.h"
#define HIST_HASH_SIZE 127
#define WHEN_SAVE_HIST_NEVER 0
#define WHEN_SAVE_HIST_QUIT 1
#define WHEN_SAVE_HIST_ALWAYS 2
typedef ListItem HistItem;
typedef GeneralList HistList;
typedef struct {
HistList *list;
HistItem *current;
Hash_sv *hash;
} Hist;
extern Hist *newHist();
extern Hist *copyHist(Hist *hist);
extern HistItem *unshiftHist(Hist *hist, char *ptr);
extern HistItem *pushHist(Hist *hist, char *ptr);
extern HistItem *pushHashHist(Hist *hist, char *ptr);
extern HistItem *getHashHist(Hist *hist, char *ptr);
extern char *lastHist(Hist *hist);
extern char *nextHist(Hist *hist);
extern char *prevHist(Hist *hist);
#endif /* HISTORY_H */