name change
[metze/wireshark/wip.git] / epan / value_string.h
1 /* value_string.h
2  * Definitions for value_string structures and routines
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
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.
14  *
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.
19  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __VALUE_STRING_H__
26 #define __VALUE_STRING_H__
27
28 #include <glib.h>
29
30 /* Struct for the val_to_str, match_strval_idx, and match_strval functions */
31
32 typedef struct _value_string {
33   guint32  value;
34   const gchar   *strptr;
35 } value_string;
36
37 /* #define VS_DEF(x) { x, #x } */
38 /* #define VS_END    { 0, NULL } */
39
40 /* Tries to match val against each element in the value_string array vs.
41    Returns the associated string ptr, and sets "*idx" to the index in
42    that table, on a match, and returns NULL, and sets "*idx" to -1,
43    on failure. */
44 extern const gchar* match_strval_idx(guint32 val, const value_string *vs, gint *idx);
45
46 /* Like match_strval_idx(), but doesn't return the index. */
47 extern const gchar* match_strval(guint32 val, const value_string *vs);
48
49 /* Tries to match val against each element in the value_string array vs.
50    Returns the associated string ptr on a match.
51    Formats val with fmt, and returns the resulting string, on failure. */
52 extern const gchar* val_to_str(guint32 val, const value_string *vs, const char *fmt);
53
54 /* Generate a string describing an enumerated bitfield (an N-bit field
55    with various specific values having particular names). */
56 extern const char *decode_enumerated_bitfield(guint32 val, guint32 mask,
57   int width, const value_string *tab, const char *fmt);
58
59 /* Generate a string describing an enumerated bitfield (an N-bit field
60    with various specific values having particular names). */
61 extern const char *decode_enumerated_bitfield_shifted(guint32 val, guint32 mask,
62   int width, const value_string *tab, const char *fmt);
63
64 #endif /* __VALUE_STRING_H__ */