X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2Fdopen.c;fp=dict%2Fdopen.c;h=6e0765e3c3a3a9f1afec243c5b93e263c29b0793;hp=5d72410f8e8013d25c3842d84daa50329d1a2b68;hb=a89d8384ad975fdddb2aa56e8c27b689a5e23f96;hpb=8f7de4981a0fdc9a1837c79aee55612ddfce9725 diff --git a/dict/dopen.c b/dict/dopen.c index 5d72410..6e0765e 100644 --- a/dict/dopen.c +++ b/dict/dopen.c @@ -29,7 +29,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "dict-p.h" -static void common_init (Dict_BFile bf, int block_size, int cache) +static void common_init(Dict_BFile bf, int block_size, int cache) { int i; @@ -41,7 +41,7 @@ static void common_init (Dict_BFile bf, int block_size, int cache) bf->hits = bf->misses = 0; /* Allocate all blocks in one chunk. */ - bf->all_data = xmalloc (block_size * cache); + bf->all_data = xmalloc(block_size * cache); /* Allocate and initialize hash array (as empty) */ bf->hash_array = (struct Dict_file_block **) @@ -51,7 +51,7 @@ static void common_init (Dict_BFile bf, int block_size, int cache) /* Allocate all block descriptors in one chunk */ bf->all_blocks = (struct Dict_file_block *) - xmalloc (sizeof(*bf->all_blocks) * cache); + xmalloc(sizeof(*bf->all_blocks) * cache); /* Initialize the free list */ bf->free_list = bf->all_blocks; @@ -69,23 +69,23 @@ static void common_init (Dict_BFile bf, int block_size, int cache) } -Dict_BFile dict_bf_open (BFiles bfs, const char *name, int block_size, - int cache, int rw) +Dict_BFile dict_bf_open(BFiles bfs, const char *name, int block_size, + int cache, int rw) { Dict_BFile dbf; - - dbf = (Dict_BFile) xmalloc (sizeof(*dbf)); - dbf->bf = bf_open (bfs, name, block_size, rw); + + dbf = (Dict_BFile) xmalloc(sizeof(*dbf)); + dbf->bf = bf_open(bfs, name, block_size, rw); if (!dbf->bf) { xfree(dbf); return 0; } - common_init (dbf, block_size, cache); + common_init(dbf, block_size, cache); return dbf; } -void dict_bf_compact (Dict_BFile dbf) +void dict_bf_compact(Dict_BFile dbf) { dbf->compact_flag = 1; }