HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / epan / dwarf.c
blob2053ec54721e7fe03dce635818acb9202f8c3b5d
1 /* dwarf.c
2 * Common DWARF parts
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "config.h"
27 #include <epan/tvbuff.h>
29 gint
30 dissect_uleb128(tvbuff_t *tvb, gint offset, guint64 *value)
32 guint start_offset = offset;
33 guint shift = 0;
34 guint8 byte;
36 *value = 0;
38 do {
39 byte = tvb_get_guint8(tvb, offset);
40 offset += 1;
42 *value |= (byte & 0x7F) << shift;
43 shift += 7;
44 } while (byte & 0x80);
46 return offset - start_offset;
49 gint
50 dissect_leb128(tvbuff_t *tvb, gint offset, gint64 *value)
52 guint start_offset = offset;
53 guint shift = 0;
54 guint8 byte;
56 *value = 0;
58 do {
59 byte = tvb_get_guint8(tvb, offset);
60 offset += 1;
62 *value |= (byte & 0x7F) << shift;
63 shift += 7;
64 } while (byte & 0x80);
66 if (shift < 64 && byte & 0x40)
67 *value |= - (1 << shift);
69 return offset - start_offset;
73 * Editor modelines - http://www.wireshark.org/tools/modelines.html
75 * Local variables:
76 * c-basic-offset: 4
77 * tab-width: 8
78 * indent-tabs-mode: nil
79 * End:
81 * vi: set shiftwidth=4 tabstop=8 expandtab:
82 * :indentSize=4:tabSize=8:noTabs=true: