be327076f39089f8fa67beffa2c2736e44f2a718
[idzebra-moved-to-github.git] / index / compact.c
1 /*
2  * Copyright (C) 1994-1999, Index Data
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: compact.c,v $
7  * Revision 1.2  1999-05-15 14:36:37  adam
8  * Updated dictionary. Implemented "compression" of dictionary.
9  *
10  * Revision 1.1  1999/03/09 10:16:35  adam
11  * Work on compaction of dictionary/isamc.
12  *
13  */
14 #include <stdio.h>
15 #include <assert.h>
16 #include <string.h>
17
18 #include "index.h"
19 #include "recindex.h"
20
21 void inv_compact (BFiles bfs)
22 {
23     dict_copy_compact (bfs, FNAME_DICT, "out");
24 }