2 * Copyright (c) 1995-1999, Index Data.
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.5 1999-11-30 13:47:11 adam
8 * Improved installation. Moved header files to include/yaz.
10 * Revision 1.4 1999/01/08 11:23:15 adam
11 * Added const modifier to some of the BER/ODR encoding routines.
13 * Revision 1.3 1996/02/29 14:23:13 adam
16 * Revision 1.2 1996/02/26 18:34:44 adam
19 * Revision 1.1 1996/02/20 13:02:58 quinn
26 #include <yaz/comstack.h>
27 #include <yaz/tcpip.h>
29 * Return length of WAIS package or 0
31 int completeWAIS(const unsigned char *buf, int len)
39 /* calculate length */
40 for (i = 0; i < 10; i++)
41 lval = lval * 10 + (buf[i] - '0');