1 /* $Id: util.h,v 1.5 2005-11-09 11:51:29 adam Exp $
2 Copyright (C) 1995-2005
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra. If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 #include <yaz/yconfig.h>
29 #include <idzebra/version.h>
31 /* check that we don't have all too old yaz */
33 #error Need a modern yaz with YLOG_ defines
39 * \brief Zebra integer
41 * This integer is used in various Zebra APIs to specify record identifires,
42 * number of occurrences etc. It is a "large" integer and is usually
43 * 64-bit on newer architectures.
46 typedef long long int zint;
47 #define ZINT_FORMAT "%lld"
48 #define ZINT_FORMAT0 "lld"
52 #define ZINT_FORMAT "%I64d"
53 #define ZINT_FORMAT0 "I64d"
56 #define ZINT_FORMAT "%ld"
57 #define ZINT_FORMAT0 "ld"
61 /** \var typedef ZEBRA_RES
62 * \brief Common return type for Zebra API
64 * This return code indicates success with code ZEBRA_OK and failure
67 typedef short ZEBRA_RES;
74 zint atoi_zn (const char *buf, zint len);
77 void zebra_zint_encode(char **dst, zint pos);
80 void zebra_zint_decode(const char **src, zint *pos);
84 #define CAST_ZINT_TO_INT(x) (int)(x)
85 #define CAST_ZINT_TO_DOUBLE(x) (double)(x)
87 /* NATTR=1 for string-attribute architecture, =0 for set+use . */