/usr/include/idzebra-2.0/idzebra/isamb.h is in libidzebra-2.0-dev 2.0.44-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | /* This file is part of the Zebra server.
Copyright (C) 1994-2010 Index Data
Zebra is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef ISAMB_H
#define ISAMB_H
#include <idzebra/bfile.h>
#include <idzebra/isamc.h>
YAZ_BEGIN_CDECL
typedef struct ISAMB_s *ISAMB;
typedef struct ISAMB_PP_s *ISAMB_PP;
YAZ_EXPORT
ISAMB isamb_open(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
int cache);
YAZ_EXPORT
ISAMB isamb_open2(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
int cache, int no_cat, int *sizes, int use_root_ptr);
YAZ_EXPORT
void isamb_close(ISAMB isamb);
YAZ_EXPORT
void isamb_merge(ISAMB b, ISAM_P *pos, ISAMC_I *data);
YAZ_EXPORT
ISAMB_PP isamb_pp_open(ISAMB isamb, ISAM_P pos, int scope);
YAZ_EXPORT
int isamb_pp_read(ISAMB_PP pp, void *buf);
YAZ_EXPORT
int isamb_pp_forward(ISAMB_PP pp, void *buf, const void *untilbuf);
YAZ_EXPORT
void isamb_pp_pos(ISAMB_PP pp, double *current, double *total);
YAZ_EXPORT
void isamb_pp_close(ISAMB_PP pp);
YAZ_EXPORT
int isamb_unlink(ISAMB b, ISAM_P pos);
YAZ_EXPORT
ISAMB_PP isamb_pp_open_x(ISAMB isamb, ISAM_P pos, int *level, int scope);
YAZ_EXPORT
void isamb_pp_close_x(ISAMB_PP pp, zint *size, zint *blocks);
YAZ_EXPORT
int isamb_block_info(ISAMB isamb, int cat);
YAZ_EXPORT
void isamb_dump(ISAMB b, ISAM_P pos, void (*pr)(const char *str));
YAZ_EXPORT
zint isamb_get_int_splits(ISAMB b);
YAZ_EXPORT
zint isamb_get_leaf_splits(ISAMB b);
YAZ_EXPORT
void isamb_set_int_count(ISAMB b, int v);
YAZ_EXPORT
void isamb_set_cache_size(ISAMB b, int sz);
YAZ_EXPORT
zint isamb_get_root_ptr(ISAMB b);
YAZ_EXPORT
void isamb_set_root_ptr(ISAMB b, zint root_ptr);
YAZ_END_CDECL
#endif
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|