/usr/include/yaz/z-mterm2.h is in libyaz4-dev 4.2.30-4.
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 | /** \file z-mterm2.h
\brief ASN.1 Module UserInfoFormat-multipleSearchTerms-2
Generated automatically by YAZ ASN.1 Compiler 0.4
*/
#ifndef z_mterm2_H
#define z_mterm2_H
#include <yaz/odr.h>
#include <yaz/z-core.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct Z_MultipleSearchTerms_2_s Z_MultipleSearchTerms_2_s;
YAZ_EXPORT int z_MultipleSearchTerms_2_s(ODR o, Z_MultipleSearchTerms_2_s **p, int opt, const char *name);
typedef struct Z_MultipleSearchTerms_2 Z_MultipleSearchTerms_2;
YAZ_EXPORT int z_MultipleSearchTerms_2(ODR o, Z_MultipleSearchTerms_2 **p, int opt, const char *name);
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct Z_MultipleSearchTerms_2_s {
Z_Term *term;
Odr_bool *flag; /* OPT */
};
struct Z_MultipleSearchTerms_2 {
int num;
Z_MultipleSearchTerms_2_s **elements;
};
#ifdef __cplusplus
}
#endif
#endif
|