From a4101322d71ce2f800d741e98ec8f537c70b663f Mon Sep 17 00:00:00 2001 From: james <> Date: Fri, 8 Feb 2008 15:06:52 +0000 Subject: *** empty log message *** --- src/history.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/history.h (limited to 'src/history.h') diff --git a/src/history.h b/src/history.h new file mode 100644 index 0000000..6c1bdba --- /dev/null +++ b/src/history.h @@ -0,0 +1,35 @@ +/* + * history.h: + * + * Copyright (c) 2008 James McKenzie , + * All rights reserved. + * + */ + +/* + * $Id$ + */ + +/* + * $Log$ + * 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; + +#endif /* __HISTORY_H__ */ -- cgit v1.2.3