More work on indexing. Not working yet.
[idzebra-moved-to-github.git] / index / index.h
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: index.h,v $
7  * Revision 1.2  1995-09-01 10:30:24  adam
8  * More work on indexing. Not working yet.
9  *
10  * Revision 1.1  1995/08/31  14:50:24  adam
11  * New simple file index tool.
12  *
13  */
14
15 #include <util.h>
16 #include <dict.h>
17 #include <isam.h>
18
19 struct it_key {
20     int sysno;
21     int seqno;
22     int field;
23 };
24
25 struct dir_entry {
26     char *name;
27 };
28
29 struct dir_entry *dir_open (const char *rep);
30 void dir_sort (struct dir_entry *e);
31 void dir_free (struct dir_entry **e_p);